이세린

Just a little edit, but last commit for tonight because I am STRESSED

Showing 1 changed file with 1 additions and 4 deletions
......@@ -7,9 +7,6 @@ const prefix = ';';
const fs = require('fs');
//import 'regenerator-runtime/runtime'; -> do i need this?
const axios = require("axios");
client.commands = new Discord.Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
......@@ -35,7 +32,7 @@ client.on('message', message => {
} else if(command == 'help'){
client.commands.get('help').execute(message, args);
} else if(command == 'calm'){
client.commands.get('calm').execute(message, args);
client.commands.get('calm').execute(message, args, Discord);
} else if(command == 'breathe'){
client.commands.get('breathe').execute(message, args);
} else if(command == 'cute'){
......