removed unnecessary code

This commit is contained in:
lucfd 2024-04-25 21:47:44 -04:00 committed by GitHub
parent dc5c8043dd
commit 7219fecf82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2916,7 +2916,7 @@ export class ForceSwitchOutAttr extends MoveEffectAttr {
return (user, target, move) => move.category !== MoveCategory.STATUS || this.getSwitchOutCondition()(user, target, move); return (user, target, move) => move.category !== MoveCategory.STATUS || this.getSwitchOutCondition()(user, target, move);
} }
public isSelfSwitch(): boolean { isSelfSwitch(): boolean {
return this.user; return this.user;
} }