command handler
This commit is contained in:
Eartharoid
2019-05-04 00:01:33 +01:00
parent 61310e09b6
commit 239b864bf3
3 changed files with 13 additions and 7 deletions

View File

@@ -1,13 +1,14 @@
const Discord = require('discord.js');
const { version } = require('../package.json');
const config = require('../config.json');
module.exports = {
name: 'help',
description: 'Displays help menu',
usage: '[command]',
aliases: ['command', 'commands'],
args: false,
cooldown: 5,
execute(message, args, config, version) {
cooldown: config.cooldown,
execute(message, args) {
const client = message.client;
// command starts here
message.delete();

View File

@@ -4,7 +4,7 @@ module.exports = {
usage: '<brief description>',
aliases: ['ticket'],
args: true,
execute(message, args, config) {
execute(message, args) {
// command starts here
message.delete();
const ticketChannel = "channel";