From 7dec760944bd39da3d83695c02607256b6738eb5 Mon Sep 17 00:00:00 2001 From: DustinLin Date: Fri, 10 May 2024 14:29:03 -0400 Subject: [PATCH] fix typo --- 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 46eef83c076..14799bdc9b5 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -134,7 +134,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.exp = dataSource?.exp || getLevelTotalExp(this.level, species.growthRate); this.levelExp = dataSource?.levelExp || 0; if (dataSource) { - this.id = dataSource.id + this.id = dataSource.id; this.hp = dataSource.hp; this.stats = dataSource.stats; this.ivs = dataSource.ivs;