Annoy user when they type 'y' instead of 'yes' :)

This commit is contained in:
Juerd Waalboer 2023-02-13 02:28:58 +01:00
parent 1ecb2286df
commit 8e9a037d1c

View file

@ -281,6 +281,9 @@ sub command($self, $cart, $command, @) {
}
sub void :Tab(yes,no) ($self, $cart, $input, @) {
if ($input eq 'y') {
return REJECT, "y is not yes...";
}
if ($input ne 'yes') {
print "Destruction cancelled.\n";
return ACCEPT;