Stupid me

This commit is contained in:
Daniel Odendahl Jr
2017-09-05 03:50:19 +00:00
parent e57b0b3afa
commit ddfec1b6f4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ module.exports = class MemeCommand extends Command {
try {
const { body } = await snekfetch
.get(`https://memegen.link/api/templates/${type}/${top}/${bottom}`);
return msg.say(body.direct.masked);
return msg.say(body.masked);
} catch (err) {
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}