increased timeout, prefixes configurable
This commit is contained in:
@ -23,7 +23,7 @@ namespace NadekoBot.Modules {
|
||||
commands.Add(new VoicePlusTextCommand(this));
|
||||
}
|
||||
|
||||
public override string Prefix { get; } = ".";
|
||||
public override string Prefix { get; } = NadekoBot.Config.CommandPrefixes.Administration;
|
||||
|
||||
public override void Install(ModuleManager manager) {
|
||||
manager.CreateCommands("", cgb => {
|
||||
|
@ -10,7 +10,7 @@ using Action = Manatee.Trello.Action;
|
||||
|
||||
namespace NadekoBot.Modules {
|
||||
internal class Trello : DiscordModule {
|
||||
private readonly Timer t = new Timer() { Interval = 2000 };
|
||||
private readonly Timer t = new Timer { Interval = 2000 };
|
||||
public override string Prefix { get; } = "trello";
|
||||
|
||||
public override void Install(ModuleManager manager) {
|
||||
|
Reference in New Issue
Block a user