From 60239acbdc1bfd3ca27cfd710d3af508df5dfb50 Mon Sep 17 00:00:00 2001 From: haranp Date: Mon, 25 Sep 2006 21:31:13 +0000 Subject: 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 --- crawl-ref/source/fight.cc | 4 ++-- 1 file 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; -- cgit v1.2.3-54-g00ecf