From 434662da98f764686b5fc3dc76a62f028184eb2b Mon Sep 17 00:00:00 2001 From: innerthunder Date: Wed, 9 Oct 2024 15:21:41 -0700 Subject: [PATCH] Fix duplicate move queue --- src/phases/move-charge-phase.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/phases/move-charge-phase.ts b/src/phases/move-charge-phase.ts index 1a7e084d20f..8b52865d04e 100644 --- a/src/phases/move-charge-phase.ts +++ b/src/phases/move-charge-phase.ts @@ -35,7 +35,6 @@ export class MoveChargePhase extends PokemonPhase { new MoveChargeAnim(move.chargeAnim, move.id, user).play(this.scene, false, () => { move.showChargeText(user, target); - user.getMoveQueue().push({ move: move.id, targets: [ target?.getBattlerIndex() ]}); applyMoveChargeAttrs(MoveEffectAttr, user, target, move).then(() => { user.addTag(BattlerTagType.CHARGING, 1, move.id, user.id);