diff --git a/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs b/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs index 006ab3ec9..60f9394c7 100644 --- a/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs +++ b/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs @@ -104,7 +104,8 @@ namespace NadekoBot.Modules.Games.Hangman CurrentPhase = Phase.Ended; return GetState(GuessResult.Win); } - + + _correct.Add(charGuess); return GetState(GuessResult.Guess); }