diff --git a/plugins/nomoney b/plugins/nomoney index 496a87b..7b6fcee 100644 --- a/plugins/nomoney +++ b/plugins/nomoney @@ -42,13 +42,10 @@ sub _inform($unresolved, $username, $skip_print = 0) { ($account eq $username ? "You don't" : "$account doesn't"), abs($broke_users->{$account}), ); - my $b = sprintf( - "(balance: %s)", - ($balance < 0 ? "\e[31;1m$balance\e[m" : $balance), - ); - say "\e[31;1m$m\e[m $b"; - call_hooks("log_info", "nomoney: $m $b"); + call_hooks("log_info", "nomoney: $m (balance: $balance)"); + my $b = ($balance < 0 ? "\e[31;1m$balance\e[m" : $balance); + say "\e[31;1m$m\e[m (balance: $b)"; } } } diff --git a/revbank b/revbank index 1b67652..c095ddb 100755 --- a/revbank +++ b/revbank @@ -17,7 +17,7 @@ use RevBank::Messages; use RevBank::Cart; use RevBank::Prompt; -our $VERSION = "7.2.0"; +our $VERSION = "7.2.1"; our %HELP1 = ( "abort" => "Abort the current transaction",