Fix inflation multiplier util

This commit is contained in:
Vortrex
2021-04-22 09:27:56 -05:00
parent 3b283f9779
commit 41439472cb

View File

@@ -22,7 +22,7 @@ function getTimeDisplayUntilPlayerPayDay(client) {
// ===========================================================================
function applyServerInflationMultiplier(value) {
return value*getServerConfig().inflationMultiplier;
return toInteger(Math.round(value*getServerConfig().inflationMultiplier))
}
// ===========================================================================