fix des durées par défaut sur wordwar

This commit is contained in:
Nemo 2021-11-13 23:02:13 +01:00
parent ec95f1a24a
commit af2d70e2cb
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ module.exports = {
var wwdelay;
if (interaction.options.get('duree') == null) {
wwtimer = 15;
wwtimer = 20;
} else {
wwtimer = interaction.options.get('duree').value;
if (isNormalInteger(wwtimer)) {
@ -54,7 +54,7 @@ module.exports = {
}
if (interaction.options.get('attente') == null) {
wwdelay = 15;
wwdelay = 2;
} else {
wwdelay = interaction.options.get('attente').value;
if (isNormalInteger(wwdelay)) {