Fix to hangman

This commit is contained in:
Kwoth 2016-12-28 20:03:09 +01:00
parent 8a9581a7e6
commit 32af4184ba

View File

@ -138,7 +138,7 @@ namespace NadekoBot.Modules.Games.Commands.Hangman
if (msg.Channel != GameChannel)
return; // message's channel has to be the same as game's
if (msg.Content.Length != 1) // message must be 1 char long
if (msg.Content.Length == 1) // message must be 1 char long
{
if (++MessagesSinceLastPost > 10)
{