Corrected command name

Commando
loicbersier 6 years ago
parent 5a268c9f2f
commit da47442111

@ -1,12 +1,12 @@
const { Command } = require('discord.js-commando');
const Discord = require('discord.js');
const snekfetch = require('snekfetch');
module.exports = class CatCommand extends Command {
module.exports = class RandoCatCommand extends Command {
constructor(client) {
super(client, {
name: 'cat',
name: 'randocat',
group: 'fun',
memberName: 'cat',
memberName: 'randocat',
description: `Show a random cat`,
});
}

@ -1,12 +1,12 @@
const { Command } = require('discord.js-commando');
const Discord = require('discord.js');
const snekfetch = require('snekfetch');
module.exports = class DoggyCommand extends Command {
module.exports = class RandoDogCommand extends Command {
constructor(client) {
super(client, {
name: 'doggy',
name: 'randodog',
group: 'fun',
memberName: 'doggy',
memberName: 'randodog',
description: `Show a random doggy`,
});
}

Loading…
Cancel
Save