From 2dd62ba5e70d34d5c05d89b7e2944a67597267ff Mon Sep 17 00:00:00 2001 From: RogueException Date: Fri, 16 Dec 2016 09:15:32 -0400 Subject: [PATCH] Set DefaultRunMode to Sync --- src/Discord.Net.Commands/CommandServiceConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.Commands/CommandServiceConfig.cs b/src/Discord.Net.Commands/CommandServiceConfig.cs index 4ac79fe8f..8377d4e60 100644 --- a/src/Discord.Net.Commands/CommandServiceConfig.cs +++ b/src/Discord.Net.Commands/CommandServiceConfig.cs @@ -3,7 +3,7 @@ public class CommandServiceConfig { /// The default RunMode commands should have, if one is not specified on the Command attribute or builder. - public RunMode DefaultRunMode { get; set; } = RunMode.Mixed; + public RunMode DefaultRunMode { get; set; } = RunMode.Sync; /// Should commands be case-sensitive? public bool CaseSensitiveCommands { get; set; } = false; }