From cd67efb481612e3a5f450bfedbd8ed0d5bf8f07d Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Thu, 22 Aug 2024 15:49:39 -0700 Subject: [PATCH] Update src/phases/turn-start-phase.ts Co-authored-by: innerthunder <168692175+innerthunder@users.noreply.github.com> --- src/phases/turn-start-phase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases/turn-start-phase.ts b/src/phases/turn-start-phase.ts index f2df52d7481..eea47b83751 100644 --- a/src/phases/turn-start-phase.ts +++ b/src/phases/turn-start-phase.ts @@ -28,7 +28,7 @@ export class TurnStartPhase extends FieldPhase { /** * This orders the active Pokemon on the field by speed into an BattlerIndex array and returns that array. * It also checks for Trick Room and reverses the array if it is present. - * @return {@linkcode BattlerIndex[]} + * @returns {@linkcode BattlerIndex[]} */ getSpeedOrder(): BattlerIndex[] { const playerField = this.scene.getPlayerField().filter(p => p.isActive()) as Pokemon[];