Transitioned all Misc, audio, Selmer Specific, admin, anime/manga, and inventory commands to Slash Command format. The RSS and reactionrole commands are still broken and all game commands are still in message format due to compications

This commit is contained in:
ION606
2022-09-27 16:45:50 -04:00
parent a190a250a6
commit e1002d748d
45 changed files with 1951 additions and 1058 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
module.exports = {
name: 'quotes',
description: "A public version of Extra Credit",
execute(message, args, Discord, Client, bot) {
execute(interaction, Discord, Client, bot) {
let dm;
let num = Math.floor(Math.random() * 10);
@@ -41,6 +41,7 @@ module.exports = {
break;
}
message.channel.send(dm);
}
interaction.reply(dm);
},
options: []
}