From: Aaron Traas Date: Tue, 4 Jul 2017 21:13:26 +0000 (-0400) Subject: Removed equivocation between ROD and ROD2 in throw() X-Git-Tag: takebird~27 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=19127d05df524822115e9b37fdfc9cd1b8aa4a1f;hp=abf820bb5c8bcf51207ef941dbe00b7c425bf023 Removed equivocation between ROD and ROD2 in throw() Already dealt with in action(), so redundant and unreachable here. --- diff --git a/actions.c b/actions.c index 34d0e48..abe9e5b 100644 --- a/actions.c +++ b/actions.c @@ -1136,8 +1136,6 @@ static int throw (struct command_t *command) * (Only way to do so!) Axe also special for dragon, bear, and * troll. Treasures special for troll. */ { - if (TOTING(ROD2) && command->obj == ROD && !TOTING(ROD)) - command->obj = ROD2; if (!TOTING(command->obj)) { rspeak(actions[command->verb].message); return GO_CLEAROBJ;