Hangman formatting fix

This commit is contained in:
Kwoth 2017-02-18 14:05:22 +01:00
parent 0851be60a4
commit e590377628

View File

@ -70,7 +70,7 @@ namespace NadekoBot.Modules.Games.Commands.Hangman
return $" {c}";
c = char.ToUpperInvariant(c);
return Guesses.Contains(c) ? $" {c}" : " _";
return Guesses.Contains(c) ? $" {c}" : " ";
})) + "`";
public bool GuessedAll => Guesses.IsSupersetOf(Term.Word.ToUpperInvariant()