Skip to content

Commit 5dc34bc

Browse files
committed
Test income
1 parent d550f52 commit 5dc34bc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

game/src/utils/functions.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,17 @@ export const renderIncomeData = (paPlayer: PaUserWithConstruct) => {
185185

186186
const incomeCredits = Math.floor((civilians * tax) / 100);
187187

188+
/*
189+
188190
const incomeCreditsWithBonus =
189191
extraCrystal === 1
190192
? incomeCredits + Math.floor(incomeCredits * 0.1)
191193
: incomeCredits;
192194
195+
*/
196+
197+
const incomeCreditsWithBonus = incomeCredits
198+
193199
const incomeTitanium =
194200
metalroid * 60 + (extraTitanium === 1 ? Math.floor(metalroid * 0.1) : 0);
195201
const incomeEnergy = sats * 45;

0 commit comments

Comments
 (0)