summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index c1fbdd170c..7ddf8605c4 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3525,8 +3525,12 @@ static int affect_monster(bolt &beam, monsters *mon)
{
if (YOU_KILL( beam.thrower ))
{
- if (mons_friendly( mon ))
+ if (mons_friendly( mon )
+ && (you.religion != GOD_BEOGH // Beogh only cares about orcs
+ || mons_species(mon->type) == MONS_ORC))
+ {
did_god_conduct( DID_ATTACK_FRIEND, 5 );
+ }
if (mons_holiness( mon ) == MH_HOLY)
did_god_conduct( DID_ATTACK_HOLY, mon->hit_dice );