From 4877dc7de9d285f66d793746c7ac3d340f35537e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= <loic@loics-macbook-pro.home>
Date: Sat, 3 Nov 2018 13:07:29 +0100
Subject: [PATCH]

---
 commands/fun/randocat.js |  6 +++---
 commands/fun/randodog.js | 10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/commands/fun/randocat.js b/commands/fun/randocat.js
index b44ae819..8729387d 100644
--- a/commands/fun/randocat.js
+++ b/commands/fun/randocat.js
@@ -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`,
         });
     }
 
diff --git a/commands/fun/randodog.js b/commands/fun/randodog.js
index ae0372dd..8877b2ac 100644
--- a/commands/fun/randodog.js
+++ b/commands/fun/randodog.js
@@ -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);