From c374052c5eeb1b2373e2fa985f55a871c5b41808 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sun, 1 Jan 2017 12:52:52 +0100 Subject: [PATCH] Fixed .totube and .whosplaying --- src/NadekoBot/Modules/Utility/Utility.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index 1570a09c..f9ef6a33 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -23,7 +23,7 @@ namespace NadekoBot.Modules.Utility [NadekoCommand, Usage, Description, Aliases] [RequireContext(ContextType.Guild)] - public async Task TogetherTube(IUserMessage imsg) + public async Task TogetherTube() { Uri target; using (var http = new HttpClient()) @@ -41,7 +41,7 @@ namespace NadekoBot.Modules.Utility [NadekoCommand, Usage, Description, Aliases] [RequireContext(ContextType.Guild)] - public async Task WhosPlaying(IUserMessage umsg, [Remainder] string game = null) + public async Task WhosPlaying([Remainder] string game = null) { game = game.Trim().ToUpperInvariant(); if (string.IsNullOrWhiteSpace(game))