diff --git a/README.md b/README.md index 91d35e665b0..a1c57ce50ef 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ - Moves - Move logic - Can't use when PP consumed + - Multi hit moves should still show 1 time(s) when hitting once - Abilities - Ability logic - Ability activation indicator (?) diff --git a/src/pokemon.ts b/src/pokemon.ts index 6671deeda81..952fc045205 100644 --- a/src/pokemon.ts +++ b/src/pokemon.ts @@ -118,7 +118,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.calculateStats(); - (scene as BattleScene).fieldUI.add(this.battleInfo); + (scene as BattleScene).fieldUI.addAt(this.battleInfo, 0); this.battleInfo.initInfo(this);