diff --git a/scripts/server/economy.js b/scripts/server/economy.js index 5531cf2d..e42479cb 100644 --- a/scripts/server/economy.js +++ b/scripts/server/economy.js @@ -41,7 +41,7 @@ function playerPayDay(client) { grossIncome = grossIncome*2; } - let incomeTaxAmount = calculateIncomeTax(wealth); + let incomeTaxAmount = Math.round(calculateIncomeTax(wealth)); let netIncome = grossIncome-incomeTaxAmount;