From: Pasi Kallinen Date: Fri, 15 Jan 2016 13:40:29 +0000 (+0200) Subject: Allow crawling out of water on Plane of Water after hurtling X-Git-Tag: NetHack-3.6.1_RC01~1017 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8efec0a547c96342c2a7b1caa4dc65453932bdc5;p=nethack Allow crawling out of water on Plane of Water after hurtling --- diff --git a/src/dothrow.c b/src/dothrow.c index f9ee2e374..ca558c7e6 100644 --- a/src/dothrow.c +++ b/src/dothrow.c @@ -623,6 +623,7 @@ int x, y; flush_screen(1); if (levl[x][y].typ == WATER && Is_waterlevel(&u.uz)) { + multi = 0; drown(); return FALSE; }