extend text in penumbra/glamourer notifs

This commit is contained in:
rootdarkarchon
2024-02-21 01:24:55 +01:00
parent d3d945ba32
commit 14237a4631

View File

@@ -634,7 +634,8 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
if (!apiAvailable && !_shownGlamourerUnavailable) if (!apiAvailable && !_shownGlamourerUnavailable)
{ {
_shownGlamourerUnavailable = true; _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) if (!penumbraAvailable && !_shownPenumbraUnavailable)
{ {
_shownPenumbraUnavailable = true; _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));
} }
} }
} }