mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-24 07:23:24 +02:00
[Bug] Fix egg gacha 10x pull option working with just one voucher (#6349)
Fix 10x egg gacha being usable with only 1 voucher
This commit is contained in:
parent
7af128f68a
commit
abd9ebbdef
@ -743,7 +743,7 @@ export class EggGachaUiHandler extends MessageUiHandler {
|
||||
|
||||
if (!freePulls && globalScene.gameData.eggs.length + pulls > 99) {
|
||||
errorKey = "egg:tooManyEggs";
|
||||
} else if (!freePulls && !globalScene.gameData.voucherCounts[voucherType]) {
|
||||
} else if (!freePulls && globalScene.gameData.voucherCounts[voucherType] < vouchersConsumed) {
|
||||
errorKey = "egg:notEnoughVouchers";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user