diff --git a/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs b/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs index 489e8d8c0..d570a10fd 100644 --- a/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs +++ b/src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs @@ -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); }