Remove unnecessary overrides

This commit is contained in:
Kurt
2020-12-21 23:40:58 -08:00
parent 997e0751f3
commit 2bc7110884
2 changed files with 0 additions and 3 deletions

View File

@@ -16,7 +16,6 @@ public sealed class EncounterStatic8N : EncounterStatic8Nest<EncounterStatic8N>
private IReadOnlyList<byte> NestLocations => Encounters8Nest.NestLocations[NestID];
public override int Location { get => SharedNest; init { } }
public override int Level { get => LevelMin; init { } }
public override int LevelMin => LevelCaps[MinRank * 2];
public override int LevelMax => LevelCaps[(MaxRank * 2) + 1];

View File

@@ -8,8 +8,6 @@ namespace PKHeX.Core
/// <inheritdoc cref="EncounterStatic8Nest{T}"/>
public sealed class EncounterStatic8NC : EncounterStatic8Nest<EncounterStatic8NC>
{
public override int Location { get => SharedNest; init { } }
protected override bool IsMatchLocation(PKM pkm)
{
var loc = pkm.Met_Location;