Add a bunch of help texts and expand on information.

This commit is contained in:
Ottermandias 2022-01-08 13:36:40 +01:00
parent 3e5ea0d89c
commit 7f9ca5db76
10 changed files with 505 additions and 390 deletions

View file

@ -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;

View file

@ -145,7 +145,7 @@ namespace Penumbra.Mods
Cache.UpdateMetaManipulations();
if( activeCollection )
{
Service< ResidentResources >.Get().ReloadPlayerResources();
Service< ResidentResources >.Get().ReloadResidentResources();
}
}
}