"improve" server money grow when 0

min `server.moneyAvailable` of 1$ when growing

unify displayed growth
This commit is contained in:
David Perez Alvarez
2022-01-23 16:32:48 -05:00
parent 07fe3c1906
commit 6de6fa092f
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -74,8 +74,8 @@ export function processSingleServerGrowth(server: Server, threads: number, p: IP
serverGrowth = 1;
}
server.moneyAvailable = Math.max(server.moneyAvailable, 1); // It can be grown even if it has no money. 1$ min
const oldMoneyAvailable = server.moneyAvailable;
server.moneyAvailable += 1 * threads; // It can be grown even if it has no money
server.moneyAvailable *= serverGrowth;
// in case of data corruption