From 4a4e931abfcc9082e76c1b18e41421f1dbac7856 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Thu, 3 Oct 2024 02:34:12 -0700 Subject: [PATCH] Disable luck upgrades for copied SMPhases --- src/phases/select-modifier-phase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases/select-modifier-phase.ts b/src/phases/select-modifier-phase.ts index 10030fed274..ae96ac009b8 100644 --- a/src/phases/select-modifier-phase.ts +++ b/src/phases/select-modifier-phase.ts @@ -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 {