missed a scope

This commit is contained in:
frutescens 2024-10-03 11:37:20 -07:00
parent a33cc74843
commit a5cffdaf21

View File

@ -3025,7 +3025,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
* *
* @see {@linkcode MoveRestrictionBattlerTag} * @see {@linkcode MoveRestrictionBattlerTag}
*/ */
isMoveRestricted(moveId: Moves, pokemon?: Pokemon): boolean { public isMoveRestricted(moveId: Moves, pokemon?: Pokemon): boolean {
return this.getRestrictingTag(moveId, pokemon) !== null; return this.getRestrictingTag(moveId, pokemon) !== null;
} }