Skip to content

Commit

Permalink
Merge pull request #481 from loukylor/alpha-development
Browse files Browse the repository at this point in the history
Fix melon load order
  • Loading branch information
HerpDerpinstine authored Jun 26, 2023
2 parents a353065 + 145b2ef commit bb5202b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MelonLoader/Melons/MelonBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static void RegisterSorted<T>(IEnumerable<T> melons) where T : MelonBase
var collection = melons.ToList();
SortMelons(ref collection);

foreach (var m in melons)
foreach (var m in collection)
m.Register();
}

Expand Down Expand Up @@ -656,4 +656,4 @@ public enum Incompatibility
Platform
}
}
}
}

0 comments on commit bb5202b

Please sign in to comment.