Update npc names.

This commit is contained in:
Ottermandias 2025-04-19 23:11:45 +02:00
parent a5d221dc13
commit 117724b0ae
4 changed files with 7 additions and 4 deletions

@ -1 +1 @@
Subproject commit ac32553b1e2e9feca7b9cd0c1b16eae81d5fcc31
Subproject commit 089ed82a53dc75b0d3be469d2a005e6096c4b2d2

@ -1 +1 @@
Subproject commit 62bbce5981e961a91322ca1a7d3bb5be25f67185
Subproject commit 002260d9815e571f1496c50374f5b712818e9880

@ -1 +1 @@
Subproject commit 2896c0561f60827f97408650d52a15c38f4d9d10
Subproject commit 0e5dcd1a5687ec5f8fa2ef2526b94b9a0ea1b5b5

View file

@ -17,6 +17,8 @@ using IPenumbraApi = Penumbra.Api.Api.IPenumbraApi;
namespace Penumbra.Services;
#pragma warning disable SeStringEvaluator
public static class StaticServiceManager
{
public static ServiceManager CreateProvider(Penumbra penumbra, IDalamudPluginInterface pi, Logger log)
@ -60,5 +62,6 @@ public static class StaticServiceManager
.AddDalamudService<ITextureSubstitutionProvider>(pi)
.AddDalamudService<IGameInteropProvider>(pi)
.AddDalamudService<IPluginLog>(pi)
.AddDalamudService<INotificationManager>(pi);
.AddDalamudService<INotificationManager>(pi)
.AddDalamudService<ISeStringEvaluator>(pi);
}