From a568cb1ad967b8e41e62668e2d2516d7e75ddc3c Mon Sep 17 00:00:00 2001 From: hydrant Date: Sat, 4 Apr 2020 21:57:50 +0200 Subject: [PATCH] =?UTF-8?q?frak=20zu=20arm=20f=C3=BCr=20frakcar=20kaufen?= =?UTF-8?q?=20fix=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReallifeGamemode.Server/Managers/BusinessManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Managers/BusinessManager.cs b/ReallifeGamemode.Server/Managers/BusinessManager.cs index 8fe70818..5212e87f 100644 --- a/ReallifeGamemode.Server/Managers/BusinessManager.cs +++ b/ReallifeGamemode.Server/Managers/BusinessManager.cs @@ -196,7 +196,7 @@ namespace ReallifeGamemode.Server.Managers TransactionResult result = BankManager.TransferMoney(faction, business, price * 3, "Auto gekauft", dbContext); if (result == TransactionResult.SENDER_NOT_ENOUGH_MONEY) { - player.SendNotification("~r~Die Fraktion hat nicht genug Geld: " + price.ToMoneyString()); + player.SendNotification("~r~Die Fraktion hat nicht genug Geld: " + (price * 3).ToMoneyString()); return; }