From 617e12f6342e650355cbdb01b04abaf502b0f2c6 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Fri, 31 Oct 2025 19:14:19 -0400 Subject: [PATCH] Removed console log --- 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 9daabc01529..215e23be3b9 100644 --- a/src/data/daily-run.ts +++ b/src/data/daily-run.ts @@ -71,7 +71,6 @@ function getDailyRunStarter(starterSpeciesForm: PokemonSpeciesForm, startingLeve variant != null, variant, ); - console.log(`%c${pokemon.shiny} ${variant} ${variant != null}`, "color:blue"); const starter: Starter = { speciesId: starterSpecies.speciesId, shiny: pokemon.shiny, @@ -271,7 +270,7 @@ function getDailyEventSeedStarters(seed: string): StarterTuple | null { const speciesIds = getEnumValues(SpeciesId); const starters: Starter[] = []; - for (const [i, match] of speciesConfigurations.entries()) { + for (const match of speciesConfigurations) { const { groups } = match; if (!groups) { console.error("Invalid seed used for custom daily run starter:", match);