Changed riddle timeout to seconds.
This commit is contained in:
@@ -26,7 +26,7 @@ async function onCommand(args, context) {
|
||||
context.logger.info(`Riddle asked "${riddle.riddle}" with answer: ${riddle.answers[0]}`);
|
||||
|
||||
try {
|
||||
await timers.setTimeout(config.riddle.timeout, null, { signal: ac.signal });
|
||||
await timers.setTimeout(config.riddle.timeout * 1000, null, { signal: ac.signal });
|
||||
|
||||
open.delete(context.room.id);
|
||||
context.sendMessage(`No one guessed the riddle: ${style.bold(riddle.fullAnswer)}! ${emojis[crypto.randomInt(0, emojis.length)]}`, context.room.id);
|
||||
|
||||
Reference in New Issue
Block a user