From 61b77be6b62b3863d260c7bc68485643fd1cac68 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Fri, 15 Jan 2010 22:28:22 +1000 Subject: Fix inverted logic with berserk + harmful clouds. --- crawl-ref/source/mon-stuff.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref') diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc index 2ade004e24..68c98abb4f 100644 --- a/crawl-ref/source/mon-stuff.cc +++ b/crawl-ref/source/mon-stuff.cc @@ -3127,7 +3127,7 @@ bool mons_avoids_cloud(const monsters *monster, cloud_struct cloud, // Berserk monsters are less careful and will blindly plow through any // dangerous cloud, just to kill you. {due} if (!extra_careful && monster->berserk()) - return (true); + return (false); switch (cl_type) { -- cgit v1.2.3-54-g00ecf