From 58dff37f0d9a32ec047728908f51c0453eb0ead2 Mon Sep 17 00:00:00 2001 From: RedstonewolfX <108761527+RedstonewolfX@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:39:29 -0400 Subject: [PATCH] More fixes yay IV info now updates at an appropriate time Disabled exact item predictions for luck breakdown due to a crash --- src/phases.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index f454490c7ab..ee571b20d2a 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -1920,6 +1920,7 @@ export class EncounterPhase extends BattlePhase { handleTutorial(this.scene, Tutorial.Access_Menu).then(() => { // Auto-show the flyout if (this.scene.currentBattle.battleType !== BattleType.TRAINER) { + this.scene.arenaFlyout.display2() this.scene.arenaFlyout.toggleFlyout(true) this.scene.arenaFlyout.isAuto = true } @@ -6851,7 +6852,7 @@ export class SelectModifierPhase extends BattlePhase { if (modifierOverride) { //modifierCount.value = modifierOverride } - const typeOptions: ModifierTypeOption[] = this.getModifierTypeOptions(modifierCount.value, true, true, true); + const typeOptions: ModifierTypeOption[] = this.getModifierTypeOptions(modifierCount.value, true, true); typeOptions.forEach((option, idx) => { //console.log(option.type.name) })