From 72e92df4fb6681ed35a5bd327c1dfaf710594bc9 Mon Sep 17 00:00:00 2001 From: AJ Fontaine Date: Tue, 22 Apr 2025 20:13:39 -0400 Subject: [PATCH] Address comment --- src/data/trainers/TrainerPartyTemplate.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/data/trainers/TrainerPartyTemplate.ts b/src/data/trainers/TrainerPartyTemplate.ts index cdfc6233455..e4c8ddf4c58 100644 --- a/src/data/trainers/TrainerPartyTemplate.ts +++ b/src/data/trainers/TrainerPartyTemplate.ts @@ -257,9 +257,7 @@ export function getGymLeaderPartyTemplate() { if (currentBattle?.waveIndex <= 20) { return trainerPartyTemplates.GYM_LEADER_2 } - else { - return trainerPartyTemplates.GYM_LEADER_3; - } + return trainerPartyTemplates.GYM_LEADER_3; case GameModes.CHALLENGE: // In the future, there may be a ChallengeType to call here. For now, use classic's. case GameModes.CLASSIC: if (currentBattle?.waveIndex <= 20) { @@ -277,9 +275,8 @@ export function getGymLeaderPartyTemplate() { else if (currentBattle?.waveIndex <= 90) { return trainerPartyTemplates.GYM_LEADER_5; // 4 avg 1 strong 1 stronger } - else { // 110+ - return trainerPartyTemplates.GYM_LEADER_6; // 3 avg 2 strong 1 stronger - } + // 110+ + return trainerPartyTemplates.GYM_LEADER_6; // 3 avg 2 strong 1 stronger default: return getWavePartyTemplate( trainerPartyTemplates.GYM_LEADER_1,