summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 14:59:59 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 14:59:59 +0000
commit3d81bd7a6b61c60f49995ad85787afa7452a7965 (patch)
tree0fac001d4ad72743612390b01f9fe58ff5c229c0 /crawl-ref/source/religion.cc
parent480d2ee923ab8077e03e10e07efe59d9306c5b81 (diff)
downloadcrawl-ref-3d81bd7a6b61c60f49995ad85787afa7452a7965.tar.gz
crawl-ref-3d81bd7a6b61c60f49995ad85787afa7452a7965.zip
Outsource the description of Xom's powers (so to speak) instead of
hardcoding it. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6296 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index c531c96366..eba5c836c5 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -464,7 +464,7 @@ bool god_gives_permanent_followers(god_type god)
std::string get_god_powers(god_type which_god)
{
// Return early for the special cases.
- if (which_god == GOD_NO_GOD || which_god == GOD_XOM)
+ if (which_god == GOD_NO_GOD)
return "";
std::string result = getLongDescription(god_name(which_god) + " powers");