From ef8e9904e4b99ab862d632e31928864fbb252659 Mon Sep 17 00:00:00 2001 From: RedstonewolfX <108761527+RedstonewolfX@users.noreply.github.com> Date: Mon, 15 Jul 2024 17:21:55 -0400 Subject: [PATCH] Log PP items correctly --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index 2813bc563ef..9701c87c2c6 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -6466,7 +6466,7 @@ export class SelectModifierPhase extends BattlePhase { : modifierType.newModifier(party[slotIndex], option as integer) : modifierType.newModifier(party[slotIndex], option - PartyOption.MOVE_1); if (isPpRestoreModifier) { - LoggerTools.logShop(this.scene, this.scene.currentBattle.waveIndex, modifierType.name + " → " + this.scene.getParty()[slotIndex].name) + LoggerTools.logShop(this.scene, this.scene.currentBattle.waveIndex, modifierType.name + " → " + this.scene.getParty()[slotIndex].name + " → " + this.scene.getParty()[slotIndex].moveset[option - PartyOption.MOVE_1].getName()) } else if (isRememberMoveModifier) { LoggerTools.logShop(this.scene, this.scene.currentBattle.waveIndex, modifierType.name + " → " + this.scene.getParty()[slotIndex].name) } else if (isTmModifier) {