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); rv = postpone(&ltc);
break; break;
default: default:
pr("Bad operation %c from cons_choose; get help!\n", ltc.op); CANT_REACH();
break; return RET_SYN;
}; }
return rv; return rv;
} }