Fixed trivia --nohint, fixes #398

This commit is contained in:
Kwoth
2023-01-19 06:55:33 +01:00
parent 032b6bfd57
commit dcc27a4a99

View File

@@ -131,8 +131,11 @@ public sealed class TriviaGame
hintSent = true;
// start a new countdown of the same length
halfGuessTimerTask = TimeOutFactory();
// send a hint out
await OnHint(this, question);
if (!_opts.NoHint)
{
// send a hint out
await OnHint(this, question);
}
continue;
}