From 29f1f98c6a482d7ef6b2b39ae6ecf85314bf14a5 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 6 Jan 2017 23:26:04 +0100 Subject: [PATCH] Hangman disabled on public bot --- src/NadekoBot/Modules/Games/Commands/HangmanCommands.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Games/Commands/HangmanCommands.cs b/src/NadekoBot/Modules/Games/Commands/HangmanCommands.cs index eba11193..33170986 100644 --- a/src/NadekoBot/Modules/Games/Commands/HangmanCommands.cs +++ b/src/NadekoBot/Modules/Games/Commands/HangmanCommands.cs @@ -31,7 +31,7 @@ namespace NadekoBot.Modules.Games { await Context.Channel.SendConfirmAsync(typesStr); } - +#if !GLOBAL_NADEKO [NadekoCommand, Usage, Description, Aliases] public async Task Hangman(HangmanTermPool.HangmanTermType type = HangmanTermPool.HangmanTermType.All) { @@ -52,6 +52,7 @@ namespace NadekoBot.Modules.Games await Context.Channel.SendConfirmAsync("Hangman game started", hm.ScrambledWord + "\n" + hm.GetHangman() + "\n" + hm.ScrambledWord); } +#endif } } }