From 85dede2668251b9eb9fa0d79db3e76b8a17bc1ff Mon Sep 17 00:00:00 2001 From: RisaDev <151885272+RisaDev@users.noreply.github.com> Date: Sat, 26 Oct 2024 00:01:58 +0300 Subject: [PATCH] Deleted launch notification --- CustomizePlus/Core/Services/CommandService.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CustomizePlus/Core/Services/CommandService.cs b/CustomizePlus/Core/Services/CommandService.cs index ee21ca7..1043279 100644 --- a/CustomizePlus/Core/Services/CommandService.cs +++ b/CustomizePlus/Core/Services/CommandService.cs @@ -16,6 +16,7 @@ using Dalamud.Interface.ImGuiNotification; using CustomizePlus.GameData.Extensions; using System.Collections.Generic; using ECommons; +using CustomizePlus.Core.Helpers; namespace CustomizePlus.Core.Services; @@ -58,9 +59,6 @@ public class CommandService : IDisposable { _commandManager.AddHandler(command, new CommandInfo(OnMainCommand) { HelpMessage = "Toggles main plugin window if no commands passed. Use \"/customize help\" for list of available commands." }); } - - if (_pluginConfiguration.CommandSettings.PrintSuccessMessages) - chatService.PrintInChat($"Started!"); //safe to assume at this point we have successfully initialized } public void Dispose()