From 0a517495f39a7ba1ece396bee7e949acd4436247 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Tue, 3 Jan 2017 19:23:53 +0100 Subject: [PATCH] Disabled >plant and pick again --- src/NadekoBot/Modules/Games/Commands/PlantAndPickCommands.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Games/Commands/PlantAndPickCommands.cs b/src/NadekoBot/Modules/Games/Commands/PlantAndPickCommands.cs index 6841c089..6d17dd76 100644 --- a/src/NadekoBot/Modules/Games/Commands/PlantAndPickCommands.cs +++ b/src/NadekoBot/Modules/Games/Commands/PlantAndPickCommands.cs @@ -104,7 +104,7 @@ namespace NadekoBot.Modules.Games } catch { } } - +#if !GLOBAL_NADEKO [NadekoCommand, Usage, Description, Aliases] [RequireContext(ContextType.Guild)] public async Task Pick() @@ -162,6 +162,7 @@ namespace NadekoBot.Modules.Games } plantedFlowers.AddOrUpdate(Context.Channel.Id, new List() { msg }, (id, old) => { old.Add(msg); return old; }); } +#endif [NadekoCommand, Usage, Description, Aliases] [RequireContext(ContextType.Guild)]