From c658c7c62270a1ab1d32fc516d8bd30c9fdfe1aa Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Thu, 18 Jul 2024 19:45:28 +0200 Subject: [PATCH] fix release build --- MareSynchronos/MarePlugin.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MareSynchronos/MarePlugin.cs b/MareSynchronos/MarePlugin.cs index cb2beb8..eb0ef4f 100644 --- a/MareSynchronos/MarePlugin.cs +++ b/MareSynchronos/MarePlugin.cs @@ -1,5 +1,6 @@ using MareSynchronos.FileCache; using MareSynchronos.MareConfiguration; +using MareSynchronos.MareConfiguration.Models; using MareSynchronos.PlayerData.Pairs; using MareSynchronos.PlayerData.Services; using MareSynchronos.Services; @@ -156,7 +157,7 @@ public class MarePlugin : MediatorSubscriberBase, IHostedService { Mediator.Publish(new NotificationMessage("Abnormal Log Level", $"Your log level is set to '{_mareConfigService.Current.LogLevel}' which is not recommended for normal usage. Set it to '{LogLevel.Information}' in \"Mare Settings -> Debug\" unless instructed otherwise.", - Dalamud.Interface.Internal.Notifications.NotificationType.Error, TimeSpan.FromSeconds(15000))); + NotificationType.Error, TimeSpan.FromSeconds(15000))); } #endif }