From dfc6196e672a8656aef138152fd46faee3b4812b Mon Sep 17 00:00:00 2001 From: Nix Krystik Date: Fri, 29 May 2026 21:39:06 +0800 Subject: [PATCH] revert embeds to regular content responses --- src/commands/settings.ts | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) 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') }); } };