From ff9528129c863a1c9adea0af864c57d66d7684c1 Mon Sep 17 00:00:00 2001 From: sirzento Date: Sat, 22 Jun 2024 18:39:35 +0200 Subject: [PATCH] [Bug] Fixed that a single voucher pull will always be common (#2518) --- src/ui/egg-gacha-ui-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/egg-gacha-ui-handler.ts b/src/ui/egg-gacha-ui-handler.ts index b90f827705b..0081b589288 100644 --- a/src/ui/egg-gacha-ui-handler.ts +++ b/src/ui/egg-gacha-ui-handler.ts @@ -392,7 +392,7 @@ export default class EggGachaUiHandler extends MessageUiHandler { // if not, override the egg tier if (i === pullCount) { const guaranteedEggTier = this.getGuaranteedEggTierFromPullCount(pullCount); - if (!eggs.some(egg => egg.tier >= guaranteedEggTier)) { + if (!eggs.some(egg => egg.tier >= guaranteedEggTier) && guaranteedEggTier !== EggTier.COMMON) { eggOptions.tier = guaranteedEggTier; } }