From ca2660beba0d3f70819b2f466d04f48077c7546a Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Fri, 4 Oct 2024 14:11:33 +0200 Subject: [PATCH] change modified game files message --- MareSynchronos/WebAPI/SignalR/ApiController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MareSynchronos/WebAPI/SignalR/ApiController.cs b/MareSynchronos/WebAPI/SignalR/ApiController.cs index 2d134e5..75049c2 100644 --- a/MareSynchronos/WebAPI/SignalR/ApiController.cs +++ b/MareSynchronos/WebAPI/SignalR/ApiController.cs @@ -226,7 +226,8 @@ public sealed partial class ApiController : DisposableMediatorSubscriberBase, IM Logger.LogError("Detected modified game files on connection"); if (!_mareConfigService.Current.DebugStopWhining) Mediator.Publish(new NotificationMessage("Modified Game Files detected", - "Mare has detected modified game files in your FFXIV installation. You will be able to connect, but the synchronization functionality might be (partially) broken. " + + "Dalamud has reported modified game files in your FFXIV installation. " + + "You will be able to connect, but the synchronization functionality might be (partially) broken. " + "Exit the game and repair it through XIVLauncher to get rid of this message.", NotificationType.Error, TimeSpan.FromSeconds(15))); }