remove console.log and another typo

This commit is contained in:
fabske0 2025-10-31 14:17:14 +01:00
parent 8e01876bd0
commit 6049038537

View File

@ -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);