mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 12:44:19 +01:00
Update to API4, use IPC instead of API-project. Replace Actor in most visible names with Object, Character or Player..
This commit is contained in:
parent
3680d2b63f
commit
4dfc2cf665
60 changed files with 812 additions and 740 deletions
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Dalamud.Logging;
|
||||
using Dalamud.Plugin;
|
||||
using Penumbra.Mod;
|
||||
using Penumbra.Structs;
|
||||
|
|
@ -93,7 +94,7 @@ namespace Penumbra.Mods
|
|||
{
|
||||
collection.Settings[ newDir.Name ] = settings;
|
||||
collection.Settings.Remove( oldBasePath.Name );
|
||||
manager.Collections.SaveCollection( collection );
|
||||
collection.Save();
|
||||
}
|
||||
|
||||
if( collection.Cache != null )
|
||||
|
|
@ -158,7 +159,7 @@ namespace Penumbra.Mods
|
|||
}
|
||||
|
||||
settings.Settings.Remove( oldGroupName );
|
||||
manager.Collections.SaveCollection( collection );
|
||||
collection.Save();
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
@ -203,7 +204,7 @@ namespace Penumbra.Mods
|
|||
if( newSetting != setting )
|
||||
{
|
||||
settings.Settings[ group.GroupName ] = newSetting;
|
||||
manager.Collections.SaveCollection( collection );
|
||||
collection.Save();
|
||||
if( collection.Cache != null && settings.Enabled )
|
||||
{
|
||||
collection.CalculateEffectiveFileList( manager.TempPath, mod.Resources.MetaManipulations.Count > 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue