From 89b392cf0a262900ba856fc99a92ebcfda934d24 Mon Sep 17 00:00:00 2001 From: mctaylors <95250141+mctaylors@users.noreply.github.com> Date: Mon, 5 Dec 2022 16:55:06 +0300 Subject: [PATCH] Update CommandProcessor.cs --- Boyfriend/CommandProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boyfriend/CommandProcessor.cs b/Boyfriend/CommandProcessor.cs index 3e32d51..00bc77e 100644 --- a/Boyfriend/CommandProcessor.cs +++ b/Boyfriend/CommandProcessor.cs @@ -13,7 +13,7 @@ public sealed class CommandProcessor { private const string NoAccess = ":no_entry_sign: "; private const string CantInteract = ":vertical_traffic_light: "; - private readonly string Mention = $"<@{Boyfriend.Client.CurrentUser.Id}>"; + private static readonly string Mention = $"<@{Boyfriend.Client.CurrentUser.Id}>"; public static readonly ICommand[] Commands = { new BanCommand(), new ClearCommand(), new HelpCommand(),