mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Do not automatically remove old sort orders.
This commit is contained in:
parent
aa92127772
commit
1a82922281
1 changed files with 2 additions and 2 deletions
|
|
@ -194,7 +194,7 @@ namespace Penumbra.Mods
|
|||
return false;
|
||||
}
|
||||
|
||||
private void SetModStructure()
|
||||
private void SetModStructure(bool removeOldPaths = false )
|
||||
{
|
||||
var changes = false;
|
||||
|
||||
|
|
@ -204,7 +204,7 @@ namespace Penumbra.Mods
|
|||
{
|
||||
changes |= SetSortOrderPath( mod, kvp.Value );
|
||||
}
|
||||
else
|
||||
else if (removeOldPaths)
|
||||
{
|
||||
changes = true;
|
||||
Config.ModSortOrder.Remove( kvp.Key );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue