summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-18 00:05:02 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-18 00:05:02 +0000
commit8f675841ee07a21138fe098204f46018d28ea3b5 (patch)
tree2f3334c4994a4e06887270c8bf680220fd3ca030
parent4c8cec9f3cc53e21df1a80f3b260d0ef8642debd (diff)
downloadcrawl-ref-8f675841ee07a21138fe098204f46018d28ea3b5.tar.gz
crawl-ref-8f675841ee07a21138fe098204f46018d28ea3b5.zip
Dial down the power of monsters' Dispel Undead a bit.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5116 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mstuff2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index b0f3b1cbfc..d728368c38 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -1691,7 +1691,7 @@ bolt mons_spells( int spell_cast, int power )
beam.thrower = KILL_MON_MISSILE;
beam.range = 7 + random2(8);
beam.rangeMax = 9;
- beam.damage = dice_def( 3, std::min(6 + power / 7, 40) );
+ beam.damage = dice_def( 3, std::min(6 + power / 8, 40) );
beam.is_beam = true;
break;