From 837ca918435df7c906915cf31e3d57fd4fe43e50 Mon Sep 17 00:00:00 2001 From: Pedro Pardal Date: Thu, 15 Apr 2021 22:53:15 +0200 Subject: [PATCH] feat: Command prefix is now configurable via settings (#572) --- Projects/UOContent/Commands/Handlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Commands/Handlers.cs b/Projects/UOContent/Commands/Handlers.cs index 2c2825c7c..cb9fa7e75 100644 --- a/Projects/UOContent/Commands/Handlers.cs +++ b/Projects/UOContent/Commands/Handlers.cs @@ -21,7 +21,7 @@ namespace Server.Commands { public static void Initialize() { - CommandSystem.Prefix = "["; + CommandSystem.Prefix = ServerConfiguration.GetOrUpdateSetting("commandsystem.prefix", "["); Register("Go", AccessLevel.Counselor, Go_OnCommand);