diff --git a/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaGame.cs b/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaGame.cs index de1c3262..7e53f791 100644 --- a/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaGame.cs +++ b/src/NadekoBot/Modules/Games/Commands/Trivia/TriviaGame.cs @@ -102,6 +102,8 @@ namespace NadekoBot.Modules.Games.Trivia private async Task End() { ShouldStopGame = true; + TriviaGame throwaway; + Games.TriviaCommands.RunningTrivias.TryRemove(channel.Guild.Id, out throwaway); try { await channel.SendMessageAsync("**Trivia game ended**\n" + GetLeaderboard()).ConfigureAwait(false); } catch { } }