summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-25 13:08:36 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-25 13:08:36 +0000
commit8e13d689ffe7280149915333f5e21358dba27c22 (patch)
tree8d2b54e9b161368453ee2b53b5d11676f0289ff0 /crawl-ref/source/spells4.cc
parentda9f5b42fa2c4f0b4e6250ac38ae2276c3dda831 (diff)
downloadcrawl-ref-8e13d689ffe7280149915333f5e21358dba27c22.tar.gz
crawl-ref-8e13d689ffe7280149915333f5e21358dba27c22.zip
ToD is gone. Upped Shatter damage by one-third to compensate.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1648 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index aef2799ce4..dc389c983f 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -179,7 +179,7 @@ static int shatter_monsters(int x, int y, int pow, int garbage)
{
UNUSED( garbage );
- dice_def dam_dice( 0, 5 + pow / 4 ); // number of dice set below
+ dice_def dam_dice( 0, 5 + pow / 3 ); // number of dice set below
const int monster = mgrd[x][y];
if (monster == NON_MONSTER)