From 0644017701e24eeb43cc5efd0ae6533a20b20d0d Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 17 May 2021 00:15:27 +0200 Subject: [PATCH] Einkommenssteuer gesenkt --- ReallifeGamemode.Server/Finance/Economy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Finance/Economy.cs b/ReallifeGamemode.Server/Finance/Economy.cs index 65fa002f..90d204bc 100644 --- a/ReallifeGamemode.Server/Finance/Economy.cs +++ b/ReallifeGamemode.Server/Finance/Economy.cs @@ -29,7 +29,7 @@ namespace ReallifeGamemode.Server.Finance { int bankAccount = client.GetUser().BankAccount.Balance; float financialHelp = -(float)Math.Pow(1.0001, -(bankAccount + client.GetUser().Handmoney)) * -1000; - float financialInterest = 1 - (float)Math.Pow(1.00006, -wage) * 1; + float financialInterest = 1 - (float)Math.Pow(1.000041, -wage) * 1; if (financialInterest >= 0.7) financialInterest = 0.7f;