summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-25 21:31:13 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-25 21:31:13 +0000
commit60239acbdc1bfd3ca27cfd710d3af508df5dfb50 (patch)
treed80edf1973d2b443e4ea8fdfe1462064be4b416d
parentf912ff12a2e7b4df7cee5d2e91333083596945b8 (diff)
downloadcrawl-ref-60239acbdc1bfd3ca27cfd710d3af508df5dfb50.tar.gz
crawl-ref-60239acbdc1bfd3ca27cfd710d3af508df5dfb50.zip
Implemented 1565244, yellow wasps have been nerfed.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@119 c06c8d41-db1a-0410-9941-cceddc491573
-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;