From 83b28e9ed417b5207007a0c1eeefd8d99893f80a Mon Sep 17 00:00:00 2001 From: zaccie Date: Mon, 21 Apr 2025 01:02:03 +1200 Subject: [PATCH] order of operations in creating bosses battleInfo levelContainer fixing indentation --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 4a43d79955a..14963f82aff 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -7157,7 +7157,7 @@ export class EnemyPokemon extends Pokemon { initBattleInfo(): void { if (!this.battleInfo) { this.battleInfo = new EnemyBattleInfo(); - this.battleInfo.initInfo(this); + this.battleInfo.initInfo(this); this.battleInfo.updateBossSegments(this); } else { this.battleInfo.updateBossSegments(this);