From f746ee46b22f4b12e9f6972d7af2004cb226a367 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Wed, 30 Jul 2025 18:41:55 +0000 Subject: [PATCH] ran biome & fixed errors --- test/test-utils/helpers/move-helper.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test-utils/helpers/move-helper.ts b/test/test-utils/helpers/move-helper.ts index d1afc53d8e8..e6b4002f6f7 100644 --- a/test/test-utils/helpers/move-helper.ts +++ b/test/test-utils/helpers/move-helper.ts @@ -179,10 +179,10 @@ export class MoveHelper extends GameManagerHelper { // Clear out both the normal and temporary movesets before setting the move. const pokemon = this.game.scene.getPlayerField()[pkmIndex]; - pokemon.moveset.splice(); - pokemon.summonData.moveset?.splice() + pokemon.moveset.splice(0); + pokemon.summonData.moveset?.splice(0); pokemon.setMove(0, moveId); - + if (useTera) { this.selectWithTera(moveId, pkmIndex, targetIndex); return;