diff --git a/src/commands/settings.ts b/src/commands/settings.ts index 9bacc52..c2bbc78 100644 --- a/src/commands/settings.ts +++ b/src/commands/settings.ts @@ -250,20 +250,7 @@ export default { response.push(`**github_release_channel** has been set to ${githubReleaseChannel}.`); } - if (response.length == 0) return interaction.editReply({ - embeds: [{ - ...CreateDefaultEmbed(client), - ...SetSeverity('warning'), - description: 'No settings were modified.' - }] - }); - - interaction.editReply({ - embeds: [{ - ...CreateDefaultEmbed(client), - ...SetSeverity('success'), - description: response.join('\n') - }] - }); + if (response.length == 0) return interaction.editReply({ content: 'No settings have been modified.' }); + interaction.editReply({ content: response.join('\n') }); } };