ну ты все через жопу сделал.
Combat Cat С вамиГуру (3693)
1 год назад
tColor(0x2f3136)
.setDescription(`${lock} **Извините, но похоже вы не указали участника!**${input}`);
return message.channel.send({ embeds: [exampleEmbed] });
} else {
const mentionedRole = user.roles.highest;
const authorRole = message.member.roles.highest;
if (mentionedRole.position > authorRole.position) {
const exampleEmbed = new MessageEmbed().setColor(0x2f3136)
.setDescription(`${lock} **Извините, но, похоже, ${user.user.username} выше вас!**`);
return message.channel.send({ embeds: [exampleEmbed] });
} else {
// some code here
}
}
}
};