Update src/data/battler-tags.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Mumble 2024-09-20 16:52:41 -07:00 committed by GitHub
parent 53766052c2
commit 8360098bb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) {