This commit is contained in:
Eartharoid 2019-05-04 12:23:27 +01:00
parent b32d038e0b
commit d2dc415f5a
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ module.exports = {
description: 'An example command', description: 'An example command',
usage: '[args]', usage: '[args]',
aliases: ['command', 'commands'], aliases: ['command', 'commands'],
example: 'example-command', example: 'example-command',
args: false, args: false,
cooldown: config.cooldown, cooldown: config.cooldown,
execute(message, args) { execute(message, args) {
@ -13,7 +13,7 @@ module.exports = {
// command starts here // command starts here
message.delete(); message.delete();
// command ends here // command ends here

View File

@ -9,6 +9,7 @@ module.exports = {
args: true, args: true,
cooldown: config.cooldown, cooldown: config.cooldown,
execute(message, args) { execute(message, args) {
const client = message.client;
// command starts here // command starts here
message.delete(); message.delete();
const ticketChannel = "channel"; const ticketChannel = "channel";