diff --git a/scripts/server/economy.js b/scripts/server/economy.js index a5a90692..07d0801b 100644 --- a/scripts/server/economy.js +++ b/scripts/server/economy.js @@ -22,7 +22,7 @@ function getTimeDisplayUntilPlayerPayDay(client) { // =========================================================================== function applyServerInflationMultiplier(value) { - return value*getServerConfig().inflationMultiplier; + return toInteger(Math.round(value*getServerConfig().inflationMultiplier)) } // =========================================================================== \ No newline at end of file