comparison rogue4/command.c @ 87:f871cb0539d3

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.
author John "Elwin" Edwards
date Tue, 13 Aug 2013 09:19:56 -0700
parents 0fd87c5c5fca
children 1b73a8641b37
comparison
equal deleted inserted replaced
86:8757a0593e6e 87:f871cb0539d3
77 ch = '.'; 77 ch = '.';
78 if (no_command) 78 if (no_command)
79 { 79 {
80 if (--no_command == 0) 80 if (--no_command == 0)
81 { 81 {
82 player.t_flags |= ISRUN;
83 msg("you can move again"); 82 msg("you can move again");
84 } 83 }
85 } 84 }
86 else 85 else
87 { 86 {