Minor tweaks

Cleaning things up before things go dark?
This commit is contained in:
Kurt
2022-10-27 11:59:42 -07:00
parent 930b35d52d
commit f591257e7a
61 changed files with 346 additions and 403 deletions

View File

@@ -58,11 +58,10 @@ private void Randomize(EvolutionSet evos, int species)
{
foreach (var evo in evos.PossibleEvolutions)
{
if (evo.Method != 0)
{
evo.Species = (ushort)RandSpec.GetRandomSpecies(evo.Species, species);
evo.Form = (byte)RandForm.GetRandomForme(evo.Species, false, false, true, Game.SWSH, Personal.Table);
}
if (evo.Method == 0)
continue;
evo.Species = (ushort)RandSpec.GetRandomSpecies(evo.Species, species);
evo.Form = (byte)RandForm.GetRandomForme(evo.Species, false, false, true, Game.SWSH, Personal.Table);
}
}