Added the 'extracredit' and 'quotes' commands

This commit is contained in:
ION606
2022-02-24 22:26:07 -05:00
parent c301bde549
commit bc5359680f
7 changed files with 574 additions and 3 deletions
+8 -1
View File
@@ -64,12 +64,19 @@ client.on('messageCreate', (message) => {
case 'arrow': client.commands.get('arrow').execute(message, args, Discord);
break;
//case 'playaudio': client.commands.get('playaudio').execute(message, args, client, Discord);
//break;
case 'quotes': client.commands.get('quotes').execute(message, args, Discord, Client);
break;
case 'extracredit': client.commands.get('EC').execute(message);
break;
default: message.channel.send("'" + message.content + "' is not a command!");
}
})
//Last Line
client.login(token);