From b3ae0b417b14663504696fed842472257cc1466b Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sun, 2 Dec 2007 13:48:06 +0000 Subject: [1841821] Fixed crash when monster blinks onto trap for 0.3 - trunk bugginess is more extensive, not fixed. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2974 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/monstuff.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc index cd5b730a45..462577e8b5 100644 --- a/crawl-ref/source/monstuff.cc +++ b/crawl-ref/source/monstuff.cc @@ -1315,7 +1315,7 @@ bool monster_blink(monsters *monster) monster->check_redraw(oldplace); monster->apply_location_effects(); - + return (true); } // end monster_blink() @@ -2570,6 +2570,7 @@ static bool handle_special_ability(monsters *monster, bolt & beem) { simple_monster_message(monster, " blinks."); monster_blink(monster); + used = true; } break; -- cgit v1.2.3-54-g00ecf