Browse Source

Set DefaultRunMode to Sync

tags/1.0-rc
RogueException 8 years ago
parent
commit
2dd62ba5e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/CommandServiceConfig.cs

+ 1
- 1
src/Discord.Net.Commands/CommandServiceConfig.cs View File

@@ -3,7 +3,7 @@
public class CommandServiceConfig
{
/// <summary> The default RunMode commands should have, if one is not specified on the Command attribute or builder. </summary>
public RunMode DefaultRunMode { get; set; } = RunMode.Mixed;
public RunMode DefaultRunMode { get; set; } = RunMode.Sync;
/// <summary> Should commands be case-sensitive? </summary>
public bool CaseSensitiveCommands { get; set; } = false;
}


Loading…
Cancel
Save