Naming items should not use up a turn.
This was fixed by adding "after = FALSE;" to the relevant cases in command(). Rogue V4 and V5 are not affected.
This commit is contained in:
parent
2a9d279baa
commit
8a4bf37667
6 changed files with 12 additions and 10 deletions
|
|
@ -394,8 +394,8 @@ command(void)
|
|||
case 'P': ring_on(); break;
|
||||
case 'R': ring_off(); break;
|
||||
case 'p': prayer(); break;
|
||||
case 'C': call(FALSE); break;
|
||||
case 'M': call(TRUE); break;
|
||||
case 'C': after = FALSE; call(FALSE); break;
|
||||
case 'M': after = FALSE; call(TRUE); break;
|
||||
case 's': search(FALSE); break;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue