Remove unused variable

This commit is contained in:
Donaldino7712 2024-05-15 20:40:37 +02:00 committed by cyip92
parent 1406593bd8
commit fe0e3001eb
2 changed files with 4 additions and 4 deletions

View File

@ -52,9 +52,6 @@ window.player = {
requirementBits: 0, requirementBits: 0,
} }
}, },
infinity: {
upgradeBits: 0
},
auto: { auto: {
autobuyersOn: true, autobuyersOn: true,
disableContinuum: false, disableContinuum: false,
@ -359,7 +356,7 @@ window.player = {
previousRuns: {} previousRuns: {}
}, },
IPMultPurchases: 0, IPMultPurchases: 0,
version: 25, version: 26,
infinityPower: DC.D1, infinityPower: DC.D1,
postC4Tier: 0, postC4Tier: 0,
eternityPoints: DC.D0, eternityPoints: DC.D0,

View File

@ -419,6 +419,9 @@ export const migrations = {
// This update has a rebalance that assumes the 3rd dilation repeatable is unpurchasable in cel7 // This update has a rebalance that assumes the 3rd dilation repeatable is unpurchasable in cel7
if (player.celestials.pelle.doomed) player.dilation.rebuyables[3] = 0; if (player.celestials.pelle.doomed) player.dilation.rebuyables[3] = 0;
},
26: player => {
delete player.infinity.upgradeBits;
} }
}, },