Fixed hangman error

This commit is contained in:
Master Kwoth 2017-07-31 08:50:04 +02:00
parent f06ee47516
commit 3097ef88a7

View File

@ -53,7 +53,6 @@ namespace NadekoBot.Modules.Games.Common.Hangman
public ImmutableArray<char> PreviousGuesses => _previousGuesses.ToImmutableArray();
private readonly TaskCompletionSource<bool> _endingCompletionSource = new TaskCompletionSource<bool>();
private bool disposed = false;
public Task EndedTask => _endingCompletionSource.Task;