From 46000b36049c2feb037852ee4a9956731c8fedbd Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 10 Oct 2016 00:59:56 +0200 Subject: [PATCH] Pokemon removed, reveresed usage and description --- src/NadekoBot/Modules/Help/Help.cs | 2 +- src/NadekoBot/Modules/Pokemon/Pokemon.cs | 27 ------------------------ 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 src/NadekoBot/Modules/Pokemon/Pokemon.cs diff --git a/src/NadekoBot/Modules/Help/Help.cs b/src/NadekoBot/Modules/Help/Help.cs index 24d7ecc8..9a9cbe6c 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -136,7 +136,7 @@ namespace NadekoBot.Modules.Help helpstr.AppendLine("----------------|--------------|-------"); lastModule = com.Module.Name; } - helpstr.AppendLine($"`{com.Text}` {string.Join(" ", com.Aliases.Skip(1).Select(a=>"`"+a+"`"))} | {com.Remarks} | {com.Summary} {GetCommandRequirements(com)}"); + helpstr.AppendLine($"`{com.Text}` {string.Join(" ", com.Aliases.Skip(1).Select(a=>"`"+a+"`"))} | {com.Summary} | {com.Remarks} {GetCommandRequirements(com)}"); } helpstr = helpstr.Replace(NadekoBot.Client.GetCurrentUser().Username , "@BotName"); #if DEBUG diff --git a/src/NadekoBot/Modules/Pokemon/Pokemon.cs b/src/NadekoBot/Modules/Pokemon/Pokemon.cs deleted file mode 100644 index 3504154a..00000000 --- a/src/NadekoBot/Modules/Pokemon/Pokemon.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Discord.Commands; -using Discord; -using NadekoBot.Attributes; -using System.Threading.Tasks; -using NadekoBot.Services; -using Discord.WebSocket; - -namespace NadekoBot.Modules.Games -{ - [Module(">", AppendSpace = false)] - public partial class Pokemon : DiscordModule - { - public Pokemon(ILocalization loc, CommandService cmds, ShardedDiscordClient client) : base(loc, cmds, client) - { - } - - //todo Dragon should PR this in - [NadekoCommand, Usage, Description, Aliases] - [RequireContext(ContextType.Guild)] - public async Task Poke(IUserMessage umsg) - { - var channel = (ITextChannel)umsg.Channel; - - - } - } -} \ No newline at end of file