This commit is contained in:
Ottermandias 2024-06-11 12:23:08 +02:00
parent 196ca2ce39
commit 361082813b
16 changed files with 1008 additions and 660 deletions

View file

@ -198,7 +198,8 @@ 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]);
// TODO
option.Manipulations.UnionWith([]);//[.. meta.MetaManipulations]);
}
else if (ext1 == ".rgsp" || ext2 == ".rgsp")
{
@ -212,7 +213,8 @@ 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]);
// TODO
option.Manipulations.UnionWith([]);//[.. rgsp.MetaManipulations]);
}
}
catch (Exception e)