cross server channels, logging when someone posts a link to console and incidents.txt

This commit is contained in:
Master Kwoth
2016-03-12 16:55:01 +01:00
parent a21412715a
commit a21a66f3c1
6 changed files with 33 additions and 8 deletions

View File

@ -21,7 +21,7 @@ namespace NadekoBot.Modules {
commands.Add(new PlayingRotate(this));
commands.Add(new RatelimitCommand(this));
commands.Add(new VoicePlusTextCommand(this));
//commands.Add(new CrossServerTextChannel(this));
commands.Add(new CrossServerTextChannel(this));
}
public override string Prefix { get; } = NadekoBot.Config.CommandPrefixes.Administration;

View File

@ -16,7 +16,7 @@ namespace NadekoBot.Modules {
commands.Add(new Trivia(this));
commands.Add(new SpeedTyping(this));
commands.Add(new PollCommand(this));
commands.Add(new BetrayGame(this));
//commands.Add(new BetrayGame(this));
_8BallAnswers = JArray.Parse(File.ReadAllText("data/8ball.json")).Select(t => t.ToString()).ToArray();
}