Fixed feed command and white space in tests
This commit is contained in:
parent
b310720875
commit
cae900e661
2 changed files with 5 additions and 3 deletions
|
@ -656,7 +656,8 @@ static int feed(token_t verb, token_t obj)
|
|||
if (HERE(FOOD)) {
|
||||
game.dflag += 2;
|
||||
rspeak(REALLY_MAD);
|
||||
}
|
||||
} else
|
||||
rspeak(actions[verb].message);
|
||||
break;
|
||||
case BEAR:
|
||||
if (game.prop[BEAR] == BEAR_DEAD) {
|
||||
|
@ -676,7 +677,8 @@ static int feed(token_t verb, token_t obj)
|
|||
case OGRE:
|
||||
if (HERE(FOOD))
|
||||
rspeak(OGRE_FULL);
|
||||
else rspeak(actions[verb].message);
|
||||
else
|
||||
rspeak(actions[verb].message);
|
||||
break;
|
||||
default:
|
||||
rspeak(AM_GAME);
|
||||
|
|
|
@ -572,7 +572,7 @@ You're in Bedquilt.
|
|||
|
||||
> feed dwarf
|
||||
|
||||
There is nothing here to eat.
|
||||
There is nothing here to eat.
|
||||
|
||||
> throw axe
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue