Display "0.00" instead of "0" when the -cash account doesn't exit yet

This commit is contained in:
Juerd Waalboer 2022-06-12 02:32:41 +02:00
parent 4ed3479ade
commit bec9578558

View file

@ -23,7 +23,7 @@ sub command :Tab(cash) ($self, $cart, $command, @) {
sub hook_cash($class, @) {
printf "There should currently be (at least) %s in the cash box.\n",
-RevBank::Users::balance("-cash");
-RevBank::Users::balance("-cash") || "0.00";
}
sub hook_user_balance($class, $username, $old, $delta, $new, @) {