mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetModStructure()
|
private void SetModStructure(bool removeOldPaths = false )
|
||||||
{
|
{
|
||||||
var changes = false;
|
var changes = false;
|
||||||
|
|
||||||
|
|
@ -204,7 +204,7 @@ namespace Penumbra.Mods
|
||||||
{
|
{
|
||||||
changes |= SetSortOrderPath( mod, kvp.Value );
|
changes |= SetSortOrderPath( mod, kvp.Value );
|
||||||
}
|
}
|
||||||
else
|
else if (removeOldPaths)
|
||||||
{
|
{
|
||||||
changes = true;
|
changes = true;
|
||||||
Config.ModSortOrder.Remove( kvp.Key );
|
Config.ModSortOrder.Remove( kvp.Key );
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue