From c02cc8c7df21824964f5d494693476f0669070b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Wed, 21 Dec 2022 04:11:05 +0100 Subject: [PATCH] Raise trivia timeout to 15s --- .../wtf/beatrice/hidekobot/commands/message/TriviaCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/wtf/beatrice/hidekobot/commands/message/TriviaCommand.java b/src/main/java/wtf/beatrice/hidekobot/commands/message/TriviaCommand.java index 336cdc0..dd429b6 100644 --- a/src/main/java/wtf/beatrice/hidekobot/commands/message/TriviaCommand.java +++ b/src/main/java/wtf/beatrice/hidekobot/commands/message/TriviaCommand.java @@ -85,7 +85,7 @@ public class TriviaCommand implements MessageCommand ScheduledFuture future = Cache.getTaskScheduler().scheduleAtFixedRate(triviaTask, 0, - 10, + 15, TimeUnit.SECONDS); triviaTask.setScheduledFuture(future);