summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-10 20:57:55 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-10 22:04:08 -0600
commit5801d6f24244af3a7d331ec7f6495c939b771923 (patch)
tree8ab46fde0f2b28622756d3b9b6eecacd663e9d8a
parent53c9ff1a2e5697add5f6597a0725613fa9102e4b (diff)
downloadcrawl-ref-5801d6f24244af3a7d331ec7f6495c939b771923.tar.gz
crawl-ref-5801d6f24244af3a7d331ec7f6495c939b771923.zip
Since is_chaotic() checks the subject for a chaotic god, don't use it to
mark players that can't worship Zin, as they'll never be able to convert from a chaotic god in that case.
-rw-r--r--crawl-ref/source/religion.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index e84961c08a..9c33ba50b7 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -4872,9 +4872,6 @@ bool player_can_join_god(god_type which_god)
if (is_good_god(which_god) && you.is_unholy())
return (false);
- if (which_god == GOD_ZIN && you.is_chaotic())
- return (false);
-
if (which_god == GOD_BEOGH && you.species != SP_HILL_ORC)
return (false);