Exemplo n.º 1
0
        public DontJustHighlightMePlugin(IConnectionManager connMgr, JObject config)
        {
            ConnectionManager = connMgr;
            Config            = new DJHMConfig(config);
            RNG = new Random();
            NicknamesOnDelay = new LinkedList <HighlightOccurrence>();

            ConnectionManager.ChannelMessage += HandleChannelMessage;
        }
Exemplo n.º 2
0
 public virtual void ReloadConfiguration(JObject newConfig)
 {
     Config = new DJHMConfig(newConfig);
     PostConfigReload();
 }