From 28dceb902bec01169744bbfcce12c6e86890d737 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 28 Jul 2017 15:24:37 +0000 Subject: [PATCH] Fix Pokemon Fusion --- commands/image-edit/pokemon-fusion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/image-edit/pokemon-fusion.js b/commands/image-edit/pokemon-fusion.js index 21f2287f..2d65651e 100644 --- a/commands/image-edit/pokemon-fusion.js +++ b/commands/image-edit/pokemon-fusion.js @@ -36,6 +36,6 @@ module.exports = class PokemonFusionCommand extends Command { run(msg, args) { const { source1, source2 } = args; - return msg.say({ files: [`http://images.alexonsager.net/pokemon/fused/${source1}/${source1}.${source2}.png`] }); + return msg.say(`http://images.alexonsager.net/pokemon/fused/${source1}/${source1}.${source2}.png`); } };