summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index e398e9cc67..6ceaf0175f 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2414,8 +2414,8 @@ void monster_attack(int monster_attacking)
mpr("You still can't move!", MSGCH_WARN);
else
mpr("You suddenly lose the ability to move!", MSGCH_WARN);
-
- you.paralysis += 1 + random2(3);
+ if ( you.paralysis == 0 || mclas == MONS_RED_WASP )
+ you.paralysis += 1 + random2(3);
}
break;