From e18c9aa28d42d6e212b3674ff63386e4cd2bb9b8 Mon Sep 17 00:00:00 2001 From: Nemo Date: Sun, 14 Nov 2021 02:34:21 +0100 Subject: [PATCH] fix: transformation des secondes en minutes sur la wordwar --- commands/wordwar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/wordwar.js b/commands/wordwar.js index 584f748..f438adf 100644 --- a/commands/wordwar.js +++ b/commands/wordwar.js @@ -177,9 +177,9 @@ module.exports = { wwRole.delete(); }, 30 * 1000); // Wait 30 seconds to delete the role } - }, wwtimer * 1000); + }, wwtimer * 60000); } - }, wwdelay * 1000); + }, wwdelay * 60000); }); /* } */ }