small bugfix for hangman

This commit is contained in:
Alan Beatty
2022-01-03 12:08:41 +00:00
committed by Kwoth
parent 9ed0c870d1
commit 9ea3460e3d

View File

@@ -105,6 +105,7 @@ namespace NadekoBot.Modules.Games.Hangman
return GetState(GuessResult.Win); return GetState(GuessResult.Win);
} }
_correct.Add(charGuess);
return GetState(GuessResult.Guess); return GetState(GuessResult.Guess);
} }