mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-31 21:03:48 +01:00
Added a bunch of logging, small fix.
This commit is contained in:
parent
9af4406c8c
commit
e8ee729ec5
16 changed files with 86 additions and 38 deletions
|
|
@ -67,7 +67,7 @@ public partial class Mod
|
|||
{
|
||||
var group = new MultiModGroup()
|
||||
{
|
||||
Name = groupData.GroupName!,
|
||||
Name = groupData.GroupName,
|
||||
Description = desc,
|
||||
Priority = priority,
|
||||
};
|
||||
|
|
@ -79,7 +79,7 @@ public partial class Mod
|
|||
{
|
||||
var group = new SingleModGroup()
|
||||
{
|
||||
Name = groupData.GroupName!,
|
||||
Name = groupData.GroupName,
|
||||
Description = desc,
|
||||
Priority = priority,
|
||||
};
|
||||
|
|
@ -97,9 +97,9 @@ public partial class Mod
|
|||
.Select( f => ( Utf8GamePath.FromFile( f, optionFolder, out var gamePath, true ), gamePath, new FullPath( f ) ) )
|
||||
.Where( t => t.Item1 );
|
||||
|
||||
var mod = new SubMod()
|
||||
var mod = new SubMod
|
||||
{
|
||||
Name = option.Name!,
|
||||
Name = option.Name,
|
||||
};
|
||||
foreach( var (_, gamePath, file) in list )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue