pull/16/head
Flashfyre 2024-03-01 18:37:07 -05:00
parent 17fe2ba597
commit 65126fa464
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ export default class EggGachaUiHandler extends MessageUiHandler {
eggs = [];
const tierValueOffset = this.gachaCursor === GachaType.LEGENDARY ? 1 : 0;
const tiers = new Array(pullCount).fill(null).map(() => {
const tierValue = Utils.randInt(1024);
const tierValue = Utils.randInt(256);
return tierValue >= 52 + tierValueOffset ? EggTier.COMMON : tierValue + tierValueOffset >= 8 ? EggTier.GREAT : tierValue >= 1 + tierValueOffset ? EggTier.ULTRA : EggTier.MASTER;
});
if (pullCount >= 25 && !tiers.filter(t => t >= EggTier.ULTRA).length)