Skip to content
Prev Previous commit
Next Next commit
Fix: added forgotten formatting
  • Loading branch information
LordTylus committed Mar 9, 2024
commit 02acab96cb71eeff8190fd4916fd45dafa0428dd
2 changes: 1 addition & 1 deletion Essentials/Commands/EcoModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void EcoPay(string Player, long amount) {
var finalToBalance = MyBankingSystem.GetBalance(toIdentitiyId) + amount;

if(finalFromBalance < 0) {
Context.Respond($"Sorry, but you are short {-finalFromBalance} credits!");
Context.Respond($"Sorry, but you are short {-finalFromBalance:#,##0} credits!");
return;
}

Expand Down