From d79abd919ef01578f2902dab65265bd360cd346d Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 17 May 2021 00:43:01 +0200 Subject: [PATCH] fix givemoney log --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 15d1d9d0..9f4a938a 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -3384,7 +3384,7 @@ namespace ReallifeGamemode.Server.Commands using (var dbContext = new DatabaseContext()) { - logger.LogInformation("Admin {0} added {2} dollars to the bank account of {1}", player.Name, target.Name, amount); + logger.LogInformation("Admin {0} added {1} dollars to the bank account of {2}", player.Name, amount, target.Name); target.GetUser(dbContext).BankAccount.Balance += amount; dbContext.SaveChanges(); }