mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-20 20:04:51 -05:00
Inline parameter passing
nothing passes anything, so swsh is default shared raids yay
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user