merge hotfix in develop

This commit is contained in:
hydrant
2021-05-17 01:28:34 +02:00
5 changed files with 46 additions and 24 deletions

View File

@@ -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();
}