diff --git a/commands/removePhrase.cjs b/commands/removePhrase.cjs index b493575..7371717 100644 --- a/commands/removePhrase.cjs +++ b/commands/removePhrase.cjs @@ -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...'); + } + }, };