remove log statement

This commit is contained in:
Matthew Olker 2024-05-16 17:20:04 -04:00
parent d8fe0b1c22
commit 75063482e1

View File

@ -2059,7 +2059,6 @@ export class TurnStartPhase extends FieldPhase {
const hasRunAway = playerPokemon.find(p => p.hasAbility(Abilities.RUN_AWAY)); const hasRunAway = playerPokemon.find(p => p.hasAbility(Abilities.RUN_AWAY));
runningPokemon = hasRunAway != undefined ? hasRunAway : fasterPokemon; runningPokemon = hasRunAway != undefined ? hasRunAway : fasterPokemon;
} }
console.log(runningPokemon.name)
this.scene.unshiftPhase(new AttemptRunPhase(this.scene, runningPokemon.getFieldIndex())); this.scene.unshiftPhase(new AttemptRunPhase(this.scene, runningPokemon.getFieldIndex()));
break; break;
} }