From f1d8ce022101e2c457af216843cbae076b0316e3 Mon Sep 17 00:00:00 2001 From: goaaats <16760685+goaaats@users.noreply.github.com> Date: Fri, 8 Jan 2021 20:38:36 +0100 Subject: [PATCH] fix: auto-reload player resources at load --- Penumbra/Plugin.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Penumbra/Plugin.cs b/Penumbra/Plugin.cs index b0ec5a91..44d9d4ed 100644 --- a/Penumbra/Plugin.cs +++ b/Penumbra/Plugin.cs @@ -49,7 +49,10 @@ namespace Penumbra ResourceLoader.Init(); ResourceLoader.Enable(); - + + // Needed to reload body textures with mods + GameUtils.ReloadPlayerResources(); + SettingsInterface = new SettingsInterface( this ); PluginInterface.UiBuilder.OnBuildUi += SettingsInterface.Draw; @@ -91,4 +94,4 @@ namespace Penumbra SettingsInterface.Visible = !SettingsInterface.Visible; } } -} \ No newline at end of file +}