mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-02 23:34:13 -05:00
Fix SOS slot recognition
This commit is contained in:
parent
5627b07e84
commit
f0b1410613
|
|
@ -91,8 +91,7 @@ private static EncounterArea[] addExtraTableSlots(EncounterArea[] GameSlots, Enc
|
|||
{
|
||||
foreach (EncounterArea g in GameSlots)
|
||||
{
|
||||
EncounterArea slots = SpecialSlots.FirstOrDefault(l => l.Location == g.Location);
|
||||
if (slots != null)
|
||||
foreach (var slots in SpecialSlots.Where(l => l.Location == g.Location))
|
||||
g.Slots = g.Slots.Concat(slots.Slots).ToArray();
|
||||
}
|
||||
return GameSlots;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user