public ChanServ(IrcBot Bot) { this.Bot = Bot; this.EnableOpCache = true; this.DeopTimer = new Timer(DeopTimerFire, null, Timeout.Infinite, Timeout.Infinite); }
public void RegisterManagerCommand(string Command, IrcBot.CommandHandler CommandHandler) { ManagerCommands.Add(Command, CommandHandler); RegisterCommand(Command, HandleManagerCommand); }