From aa96432be1cc70b5b33f196016043b6fb237ee4a Mon Sep 17 00:00:00 2001 From: Nemo Date: Sun, 14 Nov 2021 12:25:27 +0100 Subject: [PATCH] fix: typos in wordwar --- commands/wordwar.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commands/wordwar.js b/commands/wordwar.js index 839d15c..7463623 100644 --- a/commands/wordwar.js +++ b/commands/wordwar.js @@ -85,7 +85,7 @@ module.exports = { ongoingww.set(interaction.user.id, wwRole.name); interaction.member.roles.add(wwRole.id); - commandReply = "Une wordwar a été initiée. Elle commencera dans " + wwdelay + " minutes et durera " + wwtimer + " minutes."; + commandReply = "la " + wwRole.name + " a été initiée. Elle commencera dans " + wwdelay + " minutes et durera " + wwtimer + " minutes."; const row = new MessageActionRow() .addComponents( @@ -114,13 +114,13 @@ module.exports = { collectorParticipate.on('collect', async i => { if (i.member.roles.cache.has(wwRole.id)) { - OnlyReply('Vous êtes déjà enregistré pour cette wordwar', i, wwRole); + OnlyReply('Vous êtes déjà enregistré.e pour cette wordwar', i, wwRole); } else if (ongoingww.has(i.user.id)) { - OnlyReply('Vous êtes déjà enregistré dans la wordwar ' + ongoingww.get(i.user.id), i, wwRole); + OnlyReply('Vous êtes déjà enregistré.e dans la wordwar ' + ongoingww.get(i.user.id), i, wwRole); } else { i.member.roles.add(wwRole); ongoingww.set(i.user.ida, wwRole); - OnlyReply('Participation est enregistrée', i, wwRole); + OnlyReply('Participation enregistrée', i, wwRole); } }); @@ -134,7 +134,7 @@ module.exports = { if (!i.member.roles.cache.has(wwRole.id)) { OnlyReply('Vous n\'êtes pas enregistré pour cette wordwar', i, wwRole); } else { - OnlyReply('Participation est annulée', i, wwRole); + OnlyReply('Participation annulée', i, wwRole); i.member.roles.remove(wwRole); ongoingww.delete(i.user.id);