=================================================================== RCS file: /cvs2/early-roguelike/rogue5/daemons.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- early-roguelike/rogue5/daemons.c 2021/03/09 20:01:40 1.1 +++ early-roguelike/rogue5/daemons.c 2021/03/09 20:51:39 1.2 @@ -151,6 +151,7 @@ stomach(void) if (no_command || rnd(5) != 0) return; no_command += rnd(8) + 4; + player.t_flags &= ~ISRUN; //BUGFIX hungry_state = 3; if (!terse) addmsg(choose_str("the munchies overpower your motor capabilities. ", @@ -179,7 +180,6 @@ stomach(void) } } if (hungry_state != orig_hungry) { - player.t_flags &= ~ISRUN; running = FALSE; to_death = FALSE; count = 0;