consider: Clean up recovery from an impossible error

Drop the unhelpful message to the player, and fail the command.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2014-01-11 17:03:49 +01:00
parent 4877a2f024
commit a30842410e

View file

@ -90,10 +90,9 @@ cons(void)
rv = postpone(&ltc);
break;
default:
pr("Bad operation %c from cons_choose; get help!\n", ltc.op);
break;
};
CANT_REACH();
return RET_SYN;
}
return rv;
}