add protections into command

master
Caleb Fontenot 2023-05-25 21:17:54 +07:00
parent b1bb9c3845
commit fe0c2d23bd
1 changed files with 7 additions and 2 deletions

@ -16,8 +16,13 @@ module.exports = {
async execute(interaction) {
var abbreviation = interaction.options.getString('abbreviation').toLowerCase();
//var phrase = interaction.options.getString('phrase');
await interaction.reply('Removing abbreviation `' + abbreviation + "` from the target list...");
removePhrase(abbreviation);
if (message.member.roles.cache.some(role => role.name == "Trusted Users")) {
await interaction.reply('Removing abbreviation `' + abbreviation + "` from the target list...");
removePhrase(abbreviation);
} else {
await interaction.reply('Sorry, but you are not authorized to run this command...');
}
},
};