From 9ea3460e3d8d16569334e24d799d304ec5423aae Mon Sep 17 00:00:00 2001 From: Alan Beatty Date: Mon, 3 Jan 2022 12:08:41 +0000 Subject: [PATCH] small bugfix for hangman --- src/NadekoBot/Modules/Games/Common/Hangman/HangmanGame.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }