abal fix, stream notifications included into searches

This commit is contained in:
Master Kwoth 2016-03-12 21:22:32 +01:00
parent c361200178
commit 08e1ab0cfc
2 changed files with 2 additions and 1 deletions

View File

@ -365,7 +365,7 @@ namespace NadekoBot.Modules {
while (cnt-- > 0) {
construct += strings[rng.Next(0, strings.Length)];
}
await e.Channel.SendMessage(construct);
await e.Channel.SendMessage(construct + "~");
});
cgb.CreateCommand("av").Alias("avatar")

View File

@ -16,6 +16,7 @@ namespace NadekoBot.Modules {
private readonly Random rng;
public Searches() {
commands.Add(new LoLCommands(this));
commands.Add(new StreamNotifications(this));
rng = new Random();
}