diff --git a/rogue3/command.c b/rogue3/command.c index 5105a96..db4bcca 100644 --- a/rogue3/command.c +++ b/rogue3/command.c @@ -96,7 +96,7 @@ command() case 'H': case 'J': case 'K': case 'L': case 'Y': case 'U': case 'B': case 'N': case 'q': case 'r': case 's': case 'f': - case 't': case 'C': case 'I': case ' ': + case 't': case 'C': case 'I': case '.': case 'z': case 'p': break; default: @@ -191,7 +191,7 @@ command() endwin(); exit(0); } - when ' ' : ; /* Rest command */ + when '.' : ; /* Rest command */ when CTRL('P') : after = FALSE; if (wizard) diff --git a/rogue3/init.c b/rogue3/init.c index fdf0d04..1b5c178 100644 --- a/rogue3/init.c +++ b/rogue3/init.c @@ -572,7 +572,7 @@ struct h_list helpstr[] = { 'z', " zap a wand or staff", '>', " go down a staircase", 's', " search for trap/secret door", - ' ', " (space) rest for a while", + '.', " rest for a turn", 'i', " inventory", 'I', " inventory single item", 'q', " quaff potion",