mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-07-01 22:23:38 +00:00
Replace ephemeral option with flag in replies.
This commit is contained in:
@ -16,7 +16,7 @@ export default {
|
||||
if(client.config.maintenanceMode){
|
||||
return interaction.reply({
|
||||
content: client.messages.emojis["error"] + client.messages.maintenance,
|
||||
ephemeral: true
|
||||
flags: 'Ephemeral'
|
||||
});
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ export default {
|
||||
content: client.messages.emojis["error"] + client.messages.replace(client.messages.errorToGetPlaylist, {
|
||||
"%client.config.supportGuild%": client.config.supportGuild
|
||||
}),
|
||||
ephemeral: true
|
||||
flags: 'Ephemeral'
|
||||
});
|
||||
}
|
||||
|
||||
@ -36,7 +36,7 @@ export default {
|
||||
|
||||
if(!station) return interaction.reply({
|
||||
content: client.messages.emojis["error"] + client.messages.noSearchResults,
|
||||
ephemeral: true
|
||||
flags: 'Ephemeral'
|
||||
});
|
||||
|
||||
client.statistics?.update(client, interaction.guild, radio);
|
||||
|
Reference in New Issue
Block a user