Removed equivocation between ROD and ROD2 in throw()

Already dealt with in action(), so redundant and unreachable here.
This commit is contained in:
Aaron Traas 2017-07-04 17:13:26 -04:00
parent abf820bb5c
commit 19127d05df

View file

@ -1136,8 +1136,6 @@ static int throw (struct command_t *command)
* (Only way to do so!) Axe also special for dragon, bear, and * (Only way to do so!) Axe also special for dragon, bear, and
* troll. Treasures special for troll. */ * troll. Treasures special for troll. */
{ {
if (TOTING(ROD2) && command->obj == ROD && !TOTING(ROD))
command->obj = ROD2;
if (!TOTING(command->obj)) { if (!TOTING(command->obj)) {
rspeak(actions[command->verb].message); rspeak(actions[command->verb].message);
return GO_CLEAROBJ; return GO_CLEAROBJ;