From 823a8606d32acc408eb1556edb4c2fafc147a657 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Fri, 10 Nov 2023 23:12:26 +0100 Subject: [PATCH] Add /glamour help text. --- Glamourer/Services/CommandService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Glamourer/Services/CommandService.cs b/Glamourer/Services/CommandService.cs index 02d4185..0cb4eab 100644 --- a/Glamourer/Services/CommandService.cs +++ b/Glamourer/Services/CommandService.cs @@ -86,6 +86,7 @@ public class CommandService : IDisposable return; default: _chat.Print("Use without argument to toggle the main window."); + _chat.Print(new SeStringBuilder().AddText("Use ").AddPurple("/glamour").AddText(" instead of ").AddRed("/glamourer").AddText(" for application commands.").BuiltString); _chat.Print(new SeStringBuilder().AddCommand("qdb", "Toggles the quick design bar on or off.").BuiltString); _chat.Print(new SeStringBuilder().AddCommand("lock", "Toggles the lock of the main window on or off.").BuiltString); return;