From 505db2b504910eab2293f478868e88aac8b05562 Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:53:03 -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 9f133355a6f..3be6562307b 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2223,7 +2223,7 @@ export class HealBlockTag extends MoveRestrictionBattlerTag { * @param {Moves} move {@linkcode Moves} the move ID * @param {Pokemon} user {@linkcode Pokemon} the move user * @param {Pokemon} target {@linkcode Pokemon} the target of the move - * @returns {boolean} the move cannot be used b/c the target is an ally + * @returns `true` if the move cannot be used because the target is an ally */ override isMoveTargetRestricted(move: Moves, user: Pokemon, target: Pokemon) { const moveCategory = new Utils.IntegerHolder(allMoves[move].category);