summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-cast.cc
diff options
context:
space:
mode:
authorCryp71c <burnhamrobertp@gmail.com>2010-01-08 15:15:13 -0600
committerJude Brown <bookofjude@users.sourceforge.net>2010-01-09 14:16:47 +1000
commit31d6aa605a2caa121350e811550c02d27297a67e (patch)
tree69d38676e423d36e31c46042f777e761e3afaab8 /crawl-ref/source/mon-cast.cc
parent52a0cc32814dfa5ce9c63bee3d7d2b996aa9aa1e (diff)
downloadcrawl-ref-31d6aa605a2caa121350e811550c02d27297a67e.tar.gz
crawl-ref-31d6aa605a2caa121350e811550c02d27297a67e.zip
Fix monster-cast Fireball causing suicide.
Signed-off-by: Jude Brown <bookofjude@users.sourceforge.net>
Diffstat (limited to 'crawl-ref/source/mon-cast.cc')
-rw-r--r--crawl-ref/source/mon-cast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-cast.cc b/crawl-ref/source/mon-cast.cc
index ced5b15eeb..5b12e5394b 100644
--- a/crawl-ref/source/mon-cast.cc
+++ b/crawl-ref/source/mon-cast.cc
@@ -413,7 +413,7 @@ bolt mons_spells( monsters *mons, spell_type spell_cast, int power,
beam.damage = dice_def( 3, 7 + power / 10 );
beam.hit = 40;
beam.flavour = BEAM_FIRE;
- beam.foe_ratio = 60;
+ beam.foe_ratio = 80;
beam.is_explosion = true;
break;