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 c1348ab813..c3cb8bbe36 100644
--- a/crawl-ref/source/godabil.cc
+++ b/crawl-ref/source/godabil.cc
@@ -490,7 +490,7 @@ static int _slouch_monsters(coord_def where, int pow, int, actor* agent)
if (mon == NULL)
return (0);
- int dmg = (mon->speed - player_movement_speed());
+ int dmg = (mon->speed - 100/player_movement_speed());
dmg = (dmg > 0 ? dmg * dmg : 0);
mon->hurt(agent, dmg, BEAM_MMISSILE, true);