Remove an unneeded layer of macro indirection.

This commit is contained in:
Eric S. Raymond 2024-09-22 22:21:47 -04:00
parent 354e56a69b
commit 0157e58668
3 changed files with 3 additions and 4 deletions

View file

@ -407,7 +407,7 @@ static phase_codes_t vcarry(verb_t verb, obj_t obj) {
}
if ((obj == BIRD || obj == CAGE) &&
(game.objects[BIRD].prop == BIRD_CAGED ||
OBJECT_STASHED(BIRD) == BIRD_CAGED)) {
PROP_STASHIFY(game.objects[BIRD].prop) == BIRD_CAGED)) {
/* expression maps BIRD to CAGE and CAGE to BIRD */
carry(BIRD + CAGE - obj, game.loc);
}