mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
17 lines
438 B
JavaScript
17 lines
438 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',
|
|
reason: 'Code'
|
|
});
|
|
}
|
|
};
|