-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.js
More file actions
32 lines (32 loc) · 1.1 KB
/
Copy patherror.js
File metadata and controls
32 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
DEFAULT_ERROR: function(interaction) {
return interaction.followUp({
content: `No music currently playing ${interaction.member}... try again ? ❌`,
ephemeral: true
})
},
NO_NEXT_TRACKS: function (interaction) {
return interaction.followUp({
content: `No music in the queue after the current one ${interaction.member}... try again ? ❌`,
ephemeral: true
})
},
NO_PREVIOUS_TRACKS: function(interaction) {
return interaction.followUp({
content: `There was no music played before ${interaction.member}... try again ? ❌`,
ephemeral: true
})
},
NO_RESULTS_FOUND: function(interaction) {
return interaction.followUp({
content: `No results found ${interaction.member}... try again ? ❌`,
ephemeral: true
})
},
CONNECTION_FAIL: function(interaction) {
return interaction.followUp({
content: "Could not join your voice channel!, try again ? ❌",
ephemeral: true
})
}
}