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).
11 lines
130 B
C#
11 lines
130 B
C#
namespace Discord.Commands
|
|
{
|
|
public enum RunMode
|
|
{
|
|
Default,
|
|
Sync,
|
|
Mixed,
|
|
Async
|
|
}
|
|
}
|