mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Apply unprioritized mod groups in reverse order.
This commit is contained in:
parent
f533ae6667
commit
a4548bbf04
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ public sealed class Mod : IMod
|
|||
|
||||
var dictRedirections = new Dictionary<Utf8GamePath, FullPath>(TotalFileCount);
|
||||
var setManips = new MetaDictionary();
|
||||
foreach (var (group, groupIndex) in Groups.WithIndex().OrderByDescending(g => g.Value.Priority))
|
||||
foreach (var (group, groupIndex) in Groups.WithIndex().Reverse().OrderByDescending(g => g.Value.Priority))
|
||||
{
|
||||
var config = settings.Settings[groupIndex];
|
||||
group.AddData(config, dictRedirections, setManips);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue