summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godabil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/godabil.cc')
-rw-r--r--crawl-ref/source/godabil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/godabil.cc b/crawl-ref/source/godabil.cc
index 4cde222c2b..a6218eedc1 100644
--- a/crawl-ref/source/godabil.cc
+++ b/crawl-ref/source/godabil.cc
@@ -491,7 +491,7 @@ static int _slouch_monsters(coord_def where, int pow, int, actor* agent)
return (0);
int dmg = (mon->speed - 1000/player_movement_speed()/player_speed());
- dmg = (dmg > 0 ? dmg * 4 : 0);
+ dmg = (dmg > 0 ? roll_dice(dmg*4, 3)/2 : 0);
mon->hurt(agent, dmg, BEAM_MMISSILE, true);
return (1);