mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-23 08:17:59 +01:00
Add a bunch of help texts and expand on information.
This commit is contained in:
parent
3e5ea0d89c
commit
7f9ca5db76
10 changed files with 505 additions and 390 deletions
|
|
@ -43,7 +43,7 @@ public class CollectionManager
|
|||
if( ActiveCollection.Cache?.MetaManipulations.Count > 0 || newActive.Cache?.MetaManipulations.Count > 0 )
|
||||
{
|
||||
var resourceManager = Service< ResidentResources >.Get();
|
||||
resourceManager.ReloadPlayerResources();
|
||||
resourceManager.ReloadResidentResources();
|
||||
}
|
||||
|
||||
ActiveCollection = newActive;
|
||||
|
|
@ -111,7 +111,7 @@ public class CollectionManager
|
|||
|
||||
if( reloadMeta && ActiveCollection.Settings.TryGetValue( mod.BasePath.Name, out var config ) && config.Enabled )
|
||||
{
|
||||
Service< ResidentResources >.Get().ReloadPlayerResources();
|
||||
Service< ResidentResources >.Get().ReloadResidentResources();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -221,7 +221,7 @@ public class CollectionManager
|
|||
{
|
||||
ActiveCollection = c;
|
||||
var resourceManager = Service< ResidentResources >.Get();
|
||||
resourceManager.ReloadPlayerResources();
|
||||
resourceManager.ReloadResidentResources();
|
||||
}
|
||||
|
||||
DefaultCollection = c;
|
||||
|
|
@ -242,7 +242,7 @@ public class CollectionManager
|
|||
{
|
||||
ActiveCollection = c;
|
||||
var resourceManager = Service< ResidentResources >.Get();
|
||||
resourceManager.ReloadPlayerResources();
|
||||
resourceManager.ReloadResidentResources();
|
||||
}
|
||||
|
||||
CharacterCollection[ characterName ] = c;
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ namespace Penumbra.Mods
|
|||
Cache.UpdateMetaManipulations();
|
||||
if( activeCollection )
|
||||
{
|
||||
Service< ResidentResources >.Get().ReloadPlayerResources();
|
||||
Service< ResidentResources >.Get().ReloadResidentResources();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue