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 != null,
|
||||||
variant,
|
variant,
|
||||||
);
|
);
|
||||||
console.log(`%c${pokemon.shiny} ${variant} ${variant != null}`, "color:blue");
|
|
||||||
const starter: Starter = {
|
const starter: Starter = {
|
||||||
speciesId: starterSpecies.speciesId,
|
speciesId: starterSpecies.speciesId,
|
||||||
shiny: pokemon.shiny,
|
shiny: pokemon.shiny,
|
||||||
@ -271,7 +270,7 @@ function getDailyEventSeedStarters(seed: string): StarterTuple | null {
|
|||||||
const speciesIds = getEnumValues(SpeciesId);
|
const speciesIds = getEnumValues(SpeciesId);
|
||||||
const starters: Starter[] = [];
|
const starters: Starter[] = [];
|
||||||
|
|
||||||
for (const [i, match] of speciesConfigurations.entries()) {
|
for (const match of speciesConfigurations) {
|
||||||
const { groups } = match;
|
const { groups } = match;
|
||||||
if (!groups) {
|
if (!groups) {
|
||||||
console.error("Invalid seed used for custom daily run starter:", match);
|
console.error("Invalid seed used for custom daily run starter:", match);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user