From 62a58663ff1e2d070a06c834eb446022e216fd43 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Tue, 14 Jun 2022 14:46:50 +0200 Subject: [PATCH] Reload characters on application --- Glamourer/Api/GlamourerIpc.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Glamourer/Api/GlamourerIpc.cs b/Glamourer/Api/GlamourerIpc.cs index 1d5c9b1..62bd0cc 100644 --- a/Glamourer/Api/GlamourerIpc.cs +++ b/Glamourer/Api/GlamourerIpc.cs @@ -72,7 +72,9 @@ namespace Glamourer.Api { if (gameObject.Name.ToString() == characterName) { - save.Apply((Character)gameObject); + var player = (Character)gameObject; + save.Apply(player); + Glamourer.Penumbra.UpdateCharacters(player, null); } } }