mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-26 17:29:30 +02:00
Log PP items correctly
This commit is contained in:
parent
9e253f7646
commit
ef8e9904e4
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user