From 8360098bb4e1226f650b80678d65dfa0844f6117 Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:52:41 -0700 Subject: [PATCH] Update src/data/battler-tags.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/battler-tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 50bb61fa972..98b3f06a06e 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2215,7 +2215,7 @@ export class HealBlockTag extends MoveRestrictionBattlerTag { /** * Checks if a move is disabled under Heal Block * @param {Moves} move {@linkcode Moves} the move ID - * @returns {boolean} T/F if the move has a TRIAGE_MOVE flag and is a status move + * @returns `true` if the move has a TRIAGE_MOVE flag and is a status move */ override isMoveRestricted(move: Moves): boolean { if (allMoves[move].hasFlag(MoveFlags.TRIAGE_MOVE) && allMoves[move].category === MoveCategory.STATUS) {