From 496e80736087e9640689c0981e66b9da920e54cb Mon Sep 17 00:00:00 2001 From: innerthunder Date: Fri, 6 Sep 2024 23:26:53 -0700 Subject: [PATCH] Make substitutes baton-passable again --- 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 7f3c20d4d78..40a032f229a 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -2000,7 +2000,7 @@ export class SubstituteTag extends BattlerTag { public sourceInFocus: boolean; constructor(sourceMove: Moves, sourceId: integer) { - super(BattlerTagType.SUBSTITUTE, [BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.AFTER_MOVE, BattlerTagLapseType.HIT], 0, sourceMove, sourceId); + super(BattlerTagType.SUBSTITUTE, [BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.AFTER_MOVE, BattlerTagLapseType.HIT], 0, sourceMove, sourceId, true); } /** Sets the Substitute's HP and queues an on-add battle animation that initializes the Substitute's sprite. */