Pokédex Command

This commit is contained in:
Daniel Odendahl Jr
2017-07-27 04:31:36 +00:00
parent 05210f7fe2
commit 1a470682ef
6 changed files with 64 additions and 3 deletions
+1 -1
View File
@@ -36,6 +36,6 @@ module.exports = class PokemonFusionCommand extends Command {
run(msg, args) {
const { source1, source2 } = args;
return msg.say(`http://images.alexonsager.net/pokemon/fused/${source1}/${source1}.${source2}.png`);
return msg.say({ files: [`http://images.alexonsager.net/pokemon/fused/${source1}/${source1}.${source2}.png`] });
}
};