mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-20 23:07:51 +01:00
Use internal entries.
This commit is contained in:
parent
e0339160e9
commit
5ca9e63a2a
3 changed files with 48 additions and 32 deletions
|
|
@ -198,7 +198,7 @@ public partial class ModCreator(
|
|||
Penumbra.Log.Verbose(
|
||||
$"Incorporating {file} as Metadata file of {meta.MetaManipulations.Count} manipulations {deleteString}");
|
||||
deleteList.Add(file.FullName);
|
||||
option.Manipulations.UnionWith(meta.MetaManipulations);
|
||||
option.Manipulations.UnionWith([.. meta.MetaManipulations]);
|
||||
}
|
||||
else if (ext1 == ".rgsp" || ext2 == ".rgsp")
|
||||
{
|
||||
|
|
@ -212,7 +212,7 @@ public partial class ModCreator(
|
|||
$"Incorporating {file} as racial scaling file of {rgsp.MetaManipulations.Count} manipulations {deleteString}");
|
||||
deleteList.Add(file.FullName);
|
||||
|
||||
option.Manipulations.UnionWith(rgsp.MetaManipulations);
|
||||
option.Manipulations.UnionWith([.. rgsp.MetaManipulations]);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue