Small bugfix in hangman, thx ala

This commit is contained in:
Kwoth
2021-12-28 19:32:57 +01:00
parent 0acd2931eb
commit d093f7eed7

View File

@@ -1,4 +1,4 @@
#nullable disable
#nullable disable
using AngleSharp.Text;
namespace NadekoBot.Modules.Games.Hangman;
@@ -103,6 +103,7 @@ public sealed class HangmanGame
return GetState(GuessResult.Win);
}
_correct.Add(charGuess);
return GetState(GuessResult.Guess);
}