Update correction faute gramaire

This commit is contained in:
*x1
2024-06-13 11:06:40 +02:00
parent 327f38f183
commit 7dbe63d163
+3 -3
View File
@@ -4,13 +4,13 @@ const embedColor = require('../../fonctions/embedColor.js');
module.exports = {
aliases: ['teamrep'],
description: 'Ajoute un point de reputation a une team.',
description: 'Ajoute un point de reputation à une team.',
emote: '',
utilisation: '<team-id>',
permission: 0,
async execute(message, args, client) {
if (args[0].length <= 1) {
if (!args[0]) {
const embed = new EmbedBuilder()
.setTitle('Ajout Impossible')
.setDescription(`❌ Veuillez indiquer l'id une team.`)
@@ -74,7 +74,7 @@ module.exports = {
const embed = new EmbedBuilder()
.setTitle('Reputation ajouté !')
.setDescription('Vous avez ajouter une reputation a la team `' + team.name + '`, qui a maintement `' + team.reputation + 1 + '` reputation !')
.setDescription('Vous avez ajouter une reputation à la team `' + team.name + '`, qui a maintement `' + team.reputation + 1 + '` reputation !')
.setColor(await embedColor(message.author.id, message.guild.id))
.setTimestamp()
.setFooter({ text: `Demandé par ${message.author.tag}`, iconURL: message.author.displayAvatarURL() });