summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-09 02:07:18 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-09 02:07:18 +0000
commitadc7a6d8bb89cbb457c43afd904f6f99344e493a (patch)
tree24324de435c85f11c236b3c047e83978360e682a
parent98be944864e6d8026b36c6e35636c04b33ae7d48 (diff)
downloadcrawl-ref-adc7a6d8bb89cbb457c43afd904f6f99344e493a.tar.gz
crawl-ref-adc7a6d8bb89cbb457c43afd904f6f99344e493a.zip
Also display the proper messages when all your orcish followers abandon
you (oops). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3228 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/religion.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index cc8d7db154..e6e087d786 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2701,7 +2701,10 @@ static bool beogh_followers_abandon_you()
int num_followers = 0;
if (you.religion != GOD_BEOGH)
+ {
apply_to_all_dungeons(orcish_followers_on_level_abandon_you);
+ reconvert = true;
+ }
else
{
int ystart = you.y_pos - 9, xstart = you.x_pos - 9;