mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-19 14:52:19 +02:00
Fix shop
This commit is contained in:
parent
d3886a0023
commit
126904aeab
@ -3451,7 +3451,7 @@ export function getPlayerShopModifierTypeOptionsForWave(waveIndex: number, baseC
|
|||||||
return options
|
return options
|
||||||
.slice(0, Math.ceil(Math.max(waveIndex + 10, 0) / 30))
|
.slice(0, Math.ceil(Math.max(waveIndex + 10, 0) / 30))
|
||||||
.flat()
|
.flat()
|
||||||
.filter(s => !removeShop.includes(s.type.id as ModifierTypeKeys));
|
.filter(s => !removeShop.includes(s.type.localeKey.split(".")[1] as ModifierTypeKeys)); // I don't wanna hear it
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getEnemyBuffModifierForWave(
|
export function getEnemyBuffModifierForWave(
|
||||||
|
Loading…
Reference in New Issue
Block a user