summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 06:05:02 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 06:05:02 +0000
commit70ddc82fc900a147e25e0c273a657f3abe891e83 (patch)
tree503382b513219854ae123cf5227a0e2564900583
parent9dac0e0e3b594292e38fd818dc0ada31f289bfac (diff)
downloadcrawl-ref-70ddc82fc900a147e25e0c273a657f3abe891e83.tar.gz
crawl-ref-70ddc82fc900a147e25e0c273a657f3abe891e83.zip
Handle things properly if you start worshipping Zin and have both evil
and chaotic allies beforehand. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5752 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 110ddc757c..337ccd6999 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -5157,9 +5157,9 @@ void god_pitch(god_type which_god)
// hostile.
if (is_good_god(you.religion) && _evil_beings_attitude_change())
mpr("Your evil allies forsake you.", MSGCH_MONSTER_ENCHANT);
- else if (is_lawful_god(you.religion) && _chaotic_beings_attitude_change())
+ if (is_lawful_god(you.religion) && _chaotic_beings_attitude_change())
mpr("Your chaotic allies forsake you.", MSGCH_MONSTER_ENCHANT);
- else if (you.religion == GOD_TROG && _magic_users_attitude_change())
+ if (you.religion == GOD_TROG && _magic_users_attitude_change())
mpr("Your magic-using allies forsake you.", MSGCH_MONSTER_ENCHANT);
if (you.religion == GOD_ELYVILON)