From ebffb466fbc7407524cd55c8a02e92ab823d7524 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 29 Jan 2021 16:56:43 -0500 Subject: [PATCH] Make default time 15 minutes --- commands/games-mp/chess.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 8cdf64e9..a83383fb 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -42,7 +42,8 @@ module.exports = class ChessCommand extends Command { prompt: 'How long should the chess timers be set for (in minutes)? Use 0 for infinite.', type: 'integer', max: 120, - min: 0 + min: 0, + default: 15 } ] });