summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-10 18:22:09 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-10 18:41:58 -0600
commit38a73fb2e3ce4a7755f3696f233232b10129a8ef (patch)
tree2ce718021d262d5909afc082a08d73533a251e1d /crawl-ref/source/beam.cc
parent2508432895f2cf12d46ecff46496b0abbd834163 (diff)
downloadcrawl-ref-38a73fb2e3ce4a7755f3696f233232b10129a8ef.tar.gz
crawl-ref-38a73fb2e3ce4a7755f3696f233232b10129a8ef.zip
Fix inconsistencies with regard to chaotic spells.
Trigger the chaotic conduct for players that cast miasma, and mark Fulsome Distillation as chaotic, since it can create chaotic potions.
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 4f5e94ba9e..2942a600d8 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -2432,6 +2432,9 @@ int mons_adjust_flavoured(monsters *monster, bolt &pbolt, int hurted,
return (hurted);
miasma_monster(monster, pbolt.whose_kill());
+
+ if (YOU_KILL(pbolt.thrower))
+ did_god_conduct(DID_CHAOS, 2, pbolt.effect_known);
}
break;