From 6049038537de3350448090e84e4934ad15291baa Mon Sep 17 00:00:00 2001 From: fabske0 <192151969+fabske0@users.noreply.github.com> Date: Fri, 31 Oct 2025 14:17:14 +0100 Subject: [PATCH] remove console.log and another typo --- src/data/daily-run.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/data/daily-run.ts b/src/data/daily-run.ts index c79bc9a3efd..8cd9ff8a115 100644 --- a/src/data/daily-run.ts +++ b/src/data/daily-run.ts @@ -241,13 +241,12 @@ function getDailyEventSeedStarters(seed: string): StarterTuple | null { if (!speciesConfigurations) { const legacyStarters = getDailyEventSeedStartersLegay(seed); if (legacyStarters != null) { - console.log("Using lecacy starter parsing for daily run seed."); + console.log("Using legacy starter parsing for daily run seed."); return legacyStarters; } console.error("Invalid starters used for custom daily run seed!"); return null; } - console.log(speciesConfigurations); const speciesIds = getEnumValues(SpeciesId);