summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-08-02 12:07:57 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-08-02 12:11:47 -0700
commit190ec6e66d1ba387d0ddd5351a07730f414aded8 (patch)
tree843d53545b3ae1dca69c3d5d5077466c8082f3f4 /crawl-ref/source/command.cc
parentac5757d781aa72e22aae8e062791c4e7f9ec0998 (diff)
downloadcrawl-ref-190ec6e66d1ba387d0ddd5351a07730f414aded8.tar.gz
crawl-ref-190ec6e66d1ba387d0ddd5351a07730f414aded8.zip
Revert "Make Gozag trunk-only"
Not needed now that we've branched 0.15. This reverts commit 8064468542592958c6ace5dc27aa0fd88cce04a9. This reverts commit 0f053f10eb5bf6e8df296044933b8f82496ce8d3.
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 82f8485588..590b17f9c6 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -869,8 +869,7 @@ static vector<string> _get_god_keys()
for (int i = GOD_NO_GOD + 1; i < NUM_GODS; i++)
{
god_type which_god = static_cast<god_type>(i);
- if (!is_disabled_god(which_god))
- names.push_back(god_name(which_god));
+ names.push_back(god_name(which_god));
}
return names;