diff --git a/commands/Administration/goodbye.js b/commands/Administration/goodbye.js index 20e92180..681b49aa 100644 --- a/commands/Administration/goodbye.js +++ b/commands/Administration/goodbye.js @@ -51,7 +51,7 @@ class Goodbye extends BaseCommand { if (command === "test") { client.emit("guildMemberRemove", interaction.member); - return interaction.success("administration/goodbye:TEST_SUCCESS"); + return interaction.success("administration/goodbye:TEST_SUCCESS", null, { ephemeral: true }); } else { const state = interaction.options.getBoolean("state"); @@ -82,7 +82,7 @@ class Goodbye extends BaseCommand { interaction.success("administration/goodbye:ENABLED", { channel: `<#${data.guildData.plugins.goodbye.channel}>` - }); + }, { ephemeral: true }); } } } diff --git a/commands/Administration/welcome.js b/commands/Administration/welcome.js index 47f8ebcc..90300707 100644 --- a/commands/Administration/welcome.js +++ b/commands/Administration/welcome.js @@ -51,7 +51,7 @@ class Welcome extends BaseCommand { if (command === "test") { client.emit("guildMemberAdd", interaction.member); - return interaction.success("administration/goodbye:TEST_SUCCESS"); + return interaction.success("administration/goodbye:TEST_SUCCESS", null, { ephemeral: true }); } else { const state = interaction.options.getBoolean("state"); @@ -82,7 +82,7 @@ class Welcome extends BaseCommand { interaction.success("administration/welcome:ENABLED", { channel: `<#${data.guildData.plugins.welcome.channel}>` - }); + }, { ephemeral: true }); } } }