changeset 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 8757a0593e6e
children 07c4d4883ef2
files rogue4/command.c rogue5/command.c
diffstat 2 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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");
 	    }
 	}
--- 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");
 	    }
 	}