Exemplo n.º 1
0
 public AntiAntiSwearingBot(Config cfg, SearchDictionary dict)
 {
     Config    = cfg;
     Dict      = dict;
     Unbleeper = new Unbleeper(dict, cfg.Unbleeper);
 }
Exemplo n.º 2
0
 public Unbleeper(SearchDictionary dict, UnbleeperSettings cfg)
 {
     Dict = dict;
     Cfg  = cfg;
     BleepedSwearsRegex = new Regex("^" + Cfg.BleepedSwearsRegex + "$", RegexOptions.Compiled);
 }