summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index a275fef8a8..2d693329c7 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2841,8 +2841,6 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
break;
case DID_DESTROY_ORCISH_IDOL:
- beogh_idol_revenge();
-
if (you.religion == GOD_BEOGH)
{
piety_change = -level * 2;
@@ -2894,6 +2892,14 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
}
#endif
+ if (thing_done == DID_DESTROY_ORCISH_IDOL)
+ beogh_idol_revenge();
+ else if (thing_done == DID_KILL_HOLY
+ || thing_done == DID_HOLY_KILLED_BY_SERVANT)
+ {
+ tso_holy_revenge();
+ }
+
return (ret);
}