Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
feat: update messages
Browse files Browse the repository at this point in the history
Alex Hincu committed Dec 30, 2021
1 parent c9188dc commit 34799f6
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/commands/music/leave.js
Original file line number Diff line number Diff line change
@@ -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 👋')
}
}

2 changes: 1 addition & 1 deletion src/commands/music/stop.js
Original file line number Diff line number Diff line change
@@ -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) {

0 comments on commit 34799f6

Please sign in to comment.