Corrected command name

This commit is contained in:
loicbersier 2018-09-26 13:48:54 +02:00
parent 5a268c9f2f
commit da47442111
2 changed files with 6 additions and 6 deletions

View file

@ -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`,
});
}

View file

@ -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`,
});
}