Files
xiao/structures/Command.js
T
Daniel Odendahl Jr 45c8d62dd5 Credit Command
2019-04-14 00:03:38 +00:00

13 lines
411 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class XiaoCommand extends Command {
constructor(client, info) {
super(client, info);
this.argsSingleQuotes = info.argsSingleQuotes || false;
this.throttling = info.throttling || { usages: 1, duration: 2 };
this.credit = info.credit || [];
this.credit.push({ name: 'Dragon Fire', url: 'https://github.com/dragonfire535' });
}
};