mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
Removed console log
This commit is contained in:
parent
fb274077c2
commit
617e12f634
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user