This commit is contained in:
Eartharoid 2019-05-03 22:59:57 +01:00
parent 6c134a6bc5
commit ca4ddb424c
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ module.exports = {
name: 'help', name: 'help',
description: 'Displays help menu', description: 'Displays help menu',
usage: 'help [command]', usage: 'help [command]',
execute(message, args, config, version) { execute(message, args, config, version, client, Discord) {
// command starts here // command starts here
message.delete(); message.delete();
if(config.useEmbeds) { if(config.useEmbeds) {

View File

@ -2,7 +2,7 @@ module.exports = {
name: 'new', name: 'new',
description: 'Create a new ticket', description: 'Create a new ticket',
usage: 'new [brief description]', usage: 'new [brief description]',
execute(message, args, config, version) { execute(client, message, args, config, Discord) {
// command starts here // command starts here
message.delete(); message.delete();
const ticketChannel = "channel"; const ticketChannel = "channel";