forked from Supositware/Haha-Yes
This commit is contained in:
parent
68c7c04878
commit
4877dc7de9
2 changed files with 8 additions and 8 deletions
|
@ -6,10 +6,10 @@ const blacklist = require('../../json/blacklist.json')
|
|||
module.exports = class RandoDogCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'randodog',
|
||||
name: 'randocat',
|
||||
group: 'fun',
|
||||
memberName: 'randodog',
|
||||
description: `Show a random dog`,
|
||||
memberName: 'randocat',
|
||||
description: `Show a random cat`,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -6,10 +6,10 @@ const blacklist = require('../../json/blacklist.json')
|
|||
module.exports = class RandoCatCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'randocat',
|
||||
name: 'randodog',
|
||||
group: 'fun',
|
||||
memberName: 'randocat',
|
||||
description: `Show a random cat`,
|
||||
memberName: 'randodog',
|
||||
description: `Show a random dog`,
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -22,8 +22,8 @@ module.exports = class RandoCatCommand extends Command {
|
|||
}).then((response) => {
|
||||
const dogEmbed = new Discord.RichEmbed()
|
||||
.setColor("#ff9900")
|
||||
.setTitle('Meow')
|
||||
.setImage(response.file)
|
||||
.setTitle('woof')
|
||||
.setImage(response.url)
|
||||
|
||||
|
||||
message.say(dogEmbed);
|
||||
|
|
Loading…
Reference in a new issue