Rest on '.' instead of ' ', like all the other roguelikes

This commit is contained in:
John "Elwin" Edwards 2009-10-15 01:22:54 +00:00
parent 5cc5f36a58
commit de9a05892e
2 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ command()
case 'H': case 'J': case 'K': case 'L': case 'H': case 'J': case 'K': case 'L':
case 'Y': case 'U': case 'B': case 'N': case 'Y': case 'U': case 'B': case 'N':
case 'q': case 'r': case 's': case 'f': 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': case 'z': case 'p':
break; break;
default: default:
@ -191,7 +191,7 @@ command()
endwin(); endwin();
exit(0); exit(0);
} }
when ' ' : ; /* Rest command */ when '.' : ; /* Rest command */
when CTRL('P') : when CTRL('P') :
after = FALSE; after = FALSE;
if (wizard) if (wizard)

View file

@ -572,7 +572,7 @@ struct h_list helpstr[] = {
'z', " zap a wand or staff", 'z', " zap a wand or staff",
'>', " go down a staircase", '>', " go down a staircase",
's', " search for trap/secret door", 's', " search for trap/secret door",
' ', " (space) rest for a while", '.', " rest for a turn",
'i', " inventory", 'i', " inventory",
'I', " inventory single item", 'I', " inventory single item",
'q', " quaff potion", 'q', " quaff potion",