Mercurial > hg > early-roguelike
comparison urogue/command.c @ 316:c03d0b87211c
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.
author | John "Elwin" Edwards |
---|---|
date | Sun, 31 Oct 2021 21:35:53 -0400 |
parents | e52a8a7ad4c5 |
children |
comparison
equal
deleted
inserted
replaced
315:ad2570b5b21f | 316:c03d0b87211c |
---|---|
392 case 'W': wear(); break; | 392 case 'W': wear(); break; |
393 case 'T': take_off(); break; | 393 case 'T': take_off(); break; |
394 case 'P': ring_on(); break; | 394 case 'P': ring_on(); break; |
395 case 'R': ring_off(); break; | 395 case 'R': ring_off(); break; |
396 case 'p': prayer(); break; | 396 case 'p': prayer(); break; |
397 case 'C': call(FALSE); break; | 397 case 'C': after = FALSE; call(FALSE); break; |
398 case 'M': call(TRUE); break; | 398 case 'M': after = FALSE; call(TRUE); break; |
399 case 's': search(FALSE); break; | 399 case 's': search(FALSE); break; |
400 | 400 |
401 /* | 401 /* |
402 * Directional commands - get_dir sets delta | 402 * Directional commands - get_dir sets delta |
403 */ | 403 */ |