diff --git a/PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs b/PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs index 635c9cc4b..f1a5e419b 100644 --- a/PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs +++ b/PKHeX.Core/Editing/Saves/Slots/SlotViewInfo.cs @@ -29,7 +29,7 @@ private bool Equals(SlotViewInfo other) return false; if (other.Slot.Slot != Slot.Slot) return false; - return other.GetType() == GetType(); + return other.Slot.GetType() == Slot.GetType(); } public override bool Equals(object obj) => ReferenceEquals(this, obj) || (obj is SlotViewInfo other && Equals(other));