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

@@ -104,7 +104,8 @@ namespace NadekoBot.Modules.Games.Hangman
CurrentPhase = Phase.Ended;
return GetState(GuessResult.Win);
}
_correct.Add(charGuess);
return GetState(GuessResult.Guess);
}