Fix muted command not working
This commit is contained in:
parent
2d48a6fde2
commit
456469618b
2 changed files with 16 additions and 2 deletions
|
@ -54,7 +54,14 @@ export default class Mute extends Command {
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const mutedRole = interaction.guild.roles.cache.find(role => role.name == process.env.ROLES_MUTED);
|
const mutedRoleName = await SettingsHelper.GetSetting('role.muted', interaction.guildId);
|
||||||
|
|
||||||
|
if (!mutedRoleName) {
|
||||||
|
await interaction.reply('Unable to find configuration. Please contact the bot author.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mutedRole = interaction.guild.roles.cache.find(role => role.name == mutedRoleName);
|
||||||
|
|
||||||
if (!mutedRole) {
|
if (!mutedRole) {
|
||||||
await interaction.reply('Muted role not found.');
|
await interaction.reply('Muted role not found.');
|
||||||
|
|
|
@ -52,7 +52,14 @@ export default class Unmute extends Command {
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const mutedRole = interaction.guild.roles.cache.find(role => role.name == process.env.ROLES_MUTED);
|
const mutedRoleName = await SettingsHelper.GetSetting('role.muted', interaction.guildId);
|
||||||
|
|
||||||
|
if (!mutedRoleName) {
|
||||||
|
await interaction.reply('Unable to find configuration. Please contact the bot author.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mutedRole = interaction.guild.roles.cache.find(role => role.name == mutedRoleName);
|
||||||
|
|
||||||
if (!mutedRole) {
|
if (!mutedRole) {
|
||||||
await interaction.reply('Muted role not found.');
|
await interaction.reply('Muted role not found.');
|
||||||
|
|
Loading…
Reference in a new issue