Corrected command name

Commando
loicbersier 6 years ago
parent 5a268c9f2f
commit da47442111

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

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

Loading…
Cancel
Save