From 81cd91e9156bd362f8a5db42dc38d93012b05774 Mon Sep 17 00:00:00 2001 From: Bart de Bever Date: Tue, 26 Jan 2021 23:25:40 +0100 Subject: [PATCH] Quick fix to stop use of server module --- FightCore.Bot/FightCore.Bot/Modules/ServerModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/FightCore.Bot/FightCore.Bot/Modules/ServerModule.cs b/FightCore.Bot/FightCore.Bot/Modules/ServerModule.cs index 7d13ada..bfaf3fb 100644 --- a/FightCore.Bot/FightCore.Bot/Modules/ServerModule.cs +++ b/FightCore.Bot/FightCore.Bot/Modules/ServerModule.cs @@ -19,6 +19,7 @@ public ServerModule(IServerSettingsService serverSettingsService) [Command("prefix")] public async Task SetPrefix(string prefix) { + return; if (!(Context.User is SocketGuildUser guidUser)) { await ReplyAsync("Not in a server");