diff --git a/src/commands/music/leave.js b/src/commands/music/leave.js index be43154..38828de 100644 --- a/src/commands/music/leave.js +++ b/src/commands/music/leave.js @@ -17,7 +17,7 @@ class LeaveCommand extends Command { if (canAdmin(msg.member)) { await playlist.stop({ instant: true }) - return msg.util.success('alright, crashing the party.') + return msg.util.success('bye bye 👋') } if (msg.member.voice?.channel?.id !== playlist.channel.id) { @@ -33,7 +33,7 @@ class LeaveCommand extends Command { } await playlist.stop({ instant: true }) - return msg.util.success('stopped playback.') + return msg.util.success('bye bye 👋') } } diff --git a/src/commands/music/stop.js b/src/commands/music/stop.js index 719e3db..d72f826 100644 --- a/src/commands/music/stop.js +++ b/src/commands/music/stop.js @@ -21,7 +21,7 @@ class StopCommand extends Command { if (canAdmin(msg.member)) { await playlist.stop() - return msg.util.success('alright, crashing the party.') + return msg.util.success('stopped playback.') } if (msg.member.voice?.channel?.id !== playlist.channel.id) {