Files
Discord.Net/src/Discord.Net.Commands/RunMode.cs
Christopher F fb99b019a0 Fix issues with DefaultRunMode
For a command to use the DefaultRunMode, it must now have it's RunMode set to RunMode.Default (this is the default value on CommandAttribute now).
2016-11-26 22:04:02 -05:00

11 lines
130 B
C#

namespace Discord.Commands
{
public enum RunMode
{
Default,
Sync,
Mixed,
Async
}
}