# HG changeset patch # User John "Elwin" Edwards # Date 1376410796 25200 # Node ID f871cb0539d341a72b8430286c47f8fe27e12c82 # Parent 8757a0593e6ea460f5226ea18d6b0b7f09b7f806 Don't set the player's ISRUN flag. rogue4 and rogue5 set the player's ISRUN flag upon exit from sleep or holding. This is apparently supposed to indicate that the player can move again. What it actually does is make it harder for monsters to hit the player, until the flag is reset. As this behavior makes little sense and seems like a cheat, it has been deemed a bug and removed. diff -r 8757a0593e6e -r f871cb0539d3 rogue4/command.c --- a/rogue4/command.c Sat Aug 10 17:43:58 2013 -0700 +++ b/rogue4/command.c Tue Aug 13 09:19:56 2013 -0700 @@ -79,7 +79,6 @@ { if (--no_command == 0) { - player.t_flags |= ISRUN; msg("you can move again"); } } diff -r 8757a0593e6e -r f871cb0539d3 rogue5/command.c --- a/rogue5/command.c Sat Aug 10 17:43:58 2013 -0700 +++ b/rogue5/command.c Tue Aug 13 09:19:56 2013 -0700 @@ -91,7 +91,6 @@ { if (--no_command == 0) { - player.t_flags |= ISRUN; msg("you can move again"); } }