From 4526a5b1b394bc70ede5c25ece1aeef4e0372eef Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Thu, 16 Jan 2025 21:33:50 -0500 Subject: [PATCH] Update pokemon.ts comment fix Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/field/pokemon.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 00a79dc3800..56c724ef51a 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1108,9 +1108,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return this.getStat(Stat.HP); } - /** - Returns the amount of hp currently missing from this {@linkcode Pokemon} (max - current) - */ + /** Returns the amount of hp currently missing from this {@linkcode Pokemon} (max - current) */ getInverseHp(): integer { return this.getMaxHp() - this.hp; }