summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 16:03:44 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 16:03:44 +0000
commitb0d7452e9ca09372b8db3e7fd82714dd9f393c7a (patch)
tree5cc09abc3f4bf1fca9a3795e8545db66accc603f
parent50b3b3bf0e04295e4c039fe3986e4b08cfde6bc0 (diff)
downloadcrawl-ref-b0d7452e9ca09372b8db3e7fd82714dd9f393c7a.tar.gz
crawl-ref-b0d7452e9ca09372b8db3e7fd82714dd9f393c7a.zip
Clarify intent of ench_power change.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@471 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mstuff2.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 03147c5bcb..9294e2784e 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -667,7 +667,9 @@ void setup_mons_cast(struct monsters *monster, struct bolt &pbolt, int spell_cas
{
// always set these -- used by things other than fire_beam()
- // [ds] Used to be 12 * MHD, reduced to 7 * HD.
+ // [ds] Used to be 12 * MHD and later buggily forced to -1 downstairs.
+ // Setting this to a more realistic number now that that bug is
+ // squashed.
pbolt.ench_power = 4 * monster->hit_dice;
if (spell_cast == MS_TELEPORT)