diff --git a/doc/fixes37.0 b/doc/fixes37.0 index f968cfb0c..e2c36003c 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -1,4 +1,4 @@ -$NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.149 $ $NHDT-Date: 1585778315 2020/04/01 21:58:35 $ +$NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.151 $ $NHDT-Date: 1585993266 2020/04/04 09:41:06 $ General Fixes and Modified Features ----------------------------------- @@ -101,6 +101,8 @@ level compiler creates correct novel with supplied name for farlook, describe water in the castle moat and in Juiblex's swamp as moat and as swamp, respectively, rather than just as "water" make hezrous emit poison clouds when they move +stepping from one type of terrain to another was triggering an unnecessary + status update Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/hack.c b/src/hack.c index a2fb0f734..34b18f1c1 100644 --- a/src/hack.c +++ b/src/hack.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 hack.c $NHDT-Date: 1584405116 2020/03/17 00:31:56 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.250 $ */ +/* NetHack 3.6 hack.c $NHDT-Date: 1585993266 2020/04/04 09:41:06 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.254 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ @@ -2082,7 +2082,7 @@ switch_terrain() if (Flying) You("start flying."); } - if ((!Levitation ^ was_levitating) || (!Flying ^ was_flying)) + if ((!!Levitation ^ was_levitating) || (!!Flying ^ was_flying)) g.context.botl = TRUE; /* update Lev/Fly status condition */ }