From 14237a46315c54f6297f438f39e4d25b042d49b2 Mon Sep 17 00:00:00 2001 From: rootdarkarchon Date: Wed, 21 Feb 2024 01:24:55 +0100 Subject: [PATCH] extend text in penumbra/glamourer notifs --- MareSynchronos/Interop/IpcManager.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/MareSynchronos/Interop/IpcManager.cs b/MareSynchronos/Interop/IpcManager.cs index 8853304..c86aacf 100644 --- a/MareSynchronos/Interop/IpcManager.cs +++ b/MareSynchronos/Interop/IpcManager.cs @@ -634,7 +634,8 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase if (!apiAvailable && !_shownGlamourerUnavailable) { _shownGlamourerUnavailable = true; - Mediator.Publish(new NotificationMessage("Glamourer inactive", "Your Glamourer installation is not active or out of date. Update Glamourer to continue to use Mare.", NotificationType.Error)); + Mediator.Publish(new NotificationMessage("Glamourer inactive", "Your Glamourer installation is not active or out of date. Update Glamourer to continue to use Mare. If you just updated Glamourer, ignore this message.", + NotificationType.Error)); } } } @@ -684,7 +685,9 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase if (!penumbraAvailable && !_shownPenumbraUnavailable) { _shownPenumbraUnavailable = true; - Mediator.Publish(new NotificationMessage("Penumbra inactive", "Your Penumbra installation is not active or out of date. Update Penumbra and/or the Enable Mods setting in Penumbra to continue to use Mare.", NotificationType.Error)); + Mediator.Publish(new NotificationMessage("Penumbra inactive", + "Your Penumbra installation is not active or out of date. Update Penumbra and/or the Enable Mods setting in Penumbra to continue to use Mare. If you just updated Penumbra, ignore this message.", + NotificationType.Error)); } } }