Disable luck upgrades for copied SMPhases

This commit is contained in:
innerthunder 2024-10-03 02:34:12 -07:00
parent 9bdf1b74e6
commit 4a4e931abf

View File

@ -282,7 +282,7 @@ export class SelectModifierPhase extends BattlePhase {
}
copy(): SelectModifierPhase {
return new SelectModifierPhase(this.scene, this.rerollCount, this.modifierTiers, {guaranteedModifierTypeOptions: this.typeOptions});
return new SelectModifierPhase(this.scene, this.rerollCount, this.modifierTiers, { guaranteedModifierTypeOptions: this.typeOptions, allowLuckUpgrades: false });
}
addModifier(modifier: Modifier): Promise<boolean> {