another typo

This commit is contained in:
fabske0 2025-10-31 15:11:10 +01:00
parent b150b5208c
commit ac79e82013

View File

@ -241,7 +241,7 @@ function getDailyEventSeedStarters(seed: string): StarterTuple | null {
const speciesConfigurations = matcher.exec(seed)?.groups; const speciesConfigurations = matcher.exec(seed)?.groups;
if (!speciesConfigurations) { if (!speciesConfigurations) {
const legacyStarters = getDailyEventSeedStartersLegay(seed); const legacyStarters = getDailyEventSeedStartersLegacy(seed);
if (legacyStarters != null) { if (legacyStarters != null) {
console.log("Using legacy starter parsing for daily run seed."); console.log("Using legacy starter parsing for daily run seed.");
return legacyStarters; return legacyStarters;
@ -285,7 +285,7 @@ function getDailyEventSeedStarters(seed: string): StarterTuple | null {
* @returns An array of {@linkcode Starter}s, or `null` if no valid match. * @returns An array of {@linkcode Starter}s, or `null` if no valid match.
*/ */
// TODO: Can be removed after october 31st 2025 // TODO: Can be removed after october 31st 2025
function getDailyEventSeedStartersLegay(seed: string): StarterTuple | null { function getDailyEventSeedStartersLegacy(seed: string): StarterTuple | null {
if (!isDailyEventSeed(seed)) { if (!isDailyEventSeed(seed)) {
return null; return null;
} }