From: NHOrus Date: Tue, 4 Jul 2017 16:45:00 +0000 (+0300) Subject: Localized spk in discard X-Git-Tag: takebird~33 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=92de4856a6b7f9889e72faa1fc30a78526a97758 Localized spk in discard --- diff --git a/actions.c b/actions.c index 2ad4623..fdd1c93 100644 --- a/actions.c +++ b/actions.c @@ -447,12 +447,11 @@ static int discard(token_t verb, token_t obj, bool just_do_it) * bird (might attack snake or dragon) and cage (might contain bird) and vase. * Drop coins at vending machine for extra batteries. */ { - int spk = actions[verb].message; if (!just_do_it) { if (TOTING(ROD2) && obj == ROD && !TOTING(ROD)) obj = ROD2; if (!TOTING(obj)) { - rspeak(spk); + rspeak(actions[verb].message;); return GO_CLEAROBJ; } if (obj == BIRD && HERE(SNAKE)) { @@ -469,7 +468,7 @@ static int discard(token_t verb, token_t obj, bool just_do_it) game.prop[CAVITY] = CAVITY_FULL; if (HERE(RUG) && ((obj == EMERALD && game.prop[RUG] != RUG_HOVER) || (obj == RUBY && game.prop[RUG] == RUG_HOVER))) { - spk = RUG_RISES; + int spk = RUG_RISES; if (TOTING(RUG)) spk = RUG_WIGGLES; if (obj == RUBY) @@ -515,7 +514,7 @@ static int discard(token_t verb, token_t obj, bool just_do_it) int k = LIQUID(); if (k == obj) obj = BOTTLE; - if (obj == BOTTLE && k != 0) + if (obj == BOTTLE && k != NO_OBJECT) game.place[k] = LOC_NOWHERE; if (obj == CAGE && game.prop[BIRD] == BIRD_CAGED) drop(BIRD, game.loc);