From: Pasi Kallinen Date: Thu, 24 Feb 2022 13:18:00 +0000 (+0200) Subject: Remove forced trap activation from mhurtle X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=547f6e924471b9cb605752617a492669f8c10af1;p=nethack Remove forced trap activation from mhurtle --- diff --git a/src/dothrow.c b/src/dothrow.c index 498e27422..281861b0a 100644 --- a/src/dothrow.c +++ b/src/dothrow.c @@ -921,9 +921,7 @@ mhurtle_step(genericptr_t arg, int x, int y) set_apparxy(mon); if (is_waterwall(x, y)) return FALSE; - ++g.force_mintrap; res = mintrap(mon); - --g.force_mintrap; if (res == Trap_Killed_Mon || res == Trap_Caught_Mon) return FALSE; return TRUE;