We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988ea6f commit 39739eeCopy full SHA for 39739ee
commands/commands.js
@@ -1,7 +1,7 @@
1
module.exports = {
2
- name: 'commands',
+ name: 'test',
3
description: 'NULL',
4
execute(client, message, args) {
5
- // do sumthing here LOL
+ return message.channel.send(`${message.author}, This is just a test command.`);
6
},
7
};
commands/functioning.txt
@@ -0,0 +1,7 @@
+[ N ] commands.js
+[ Y ] help.js
+[ N ] list.js
+[ Y ] online.js
+[ Y ] ping.js
+[ N ] queue.js
+[ Y ] status.js
commands/queue.js
@@ -49,10 +49,10 @@ module.exports = {
49
if (!serverQueue) {
50
const queueContruct = {
51
textChannel: message.channel,
52
+ game: "nani"
53
54
55
queue.set(message.guild.id, queueContruct);
-
56
queueContruct.games.push(games);
57
58
} else {
0 commit comments