Inline parameter passing

nothing passes anything, so swsh is default
shared raids yay
This commit is contained in:
Kurt
2020-10-30 19:56:37 -07:00
parent 80a5d8e451
commit d7042fb19e

View File

@@ -9,14 +9,14 @@ public sealed class EncounterStatic8U : EncounterStatic8Nest<EncounterStatic8U>
{
public override int Location { get => MaxLair; set { } }
public EncounterStatic8U(int species, int form, int level, GameVersion game = GameVersion.SWSH)
public EncounterStatic8U(int species, int form, int level)
{
Species = species;
Form = form;
Level = level;
DynamaxLevel = 8;
FlawlessIVCount = 4;
Version = game;
Version = GameVersion.SWSH; // no difference in met location for hosted raids
}
public override bool IsMatch(PKM pkm, DexLevel evo)