forked from Supositware/Haha-Yes
Corrected command name
This commit is contained in:
parent
5a268c9f2f
commit
da47442111
2 changed files with 6 additions and 6 deletions
|
@ -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…
Reference in a new issue