mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
another typo
This commit is contained in:
parent
b150b5208c
commit
ac79e82013
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user