From 64cfe647314ce147ef57eb0bd7b8b14db46cdd23 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 26 Aug 2017 01:49:08 +0000 Subject: [PATCH] Oops --- commands/image-edit/pokemon-fusion.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/image-edit/pokemon-fusion.js b/commands/image-edit/pokemon-fusion.js index 029b7412..83e14710 100644 --- a/commands/image-edit/pokemon-fusion.js +++ b/commands/image-edit/pokemon-fusion.js @@ -12,7 +12,7 @@ module.exports = class PokemonFusionCommand extends Command { args: [ { key: 'body', - prompt: 'What Pokémon should be fused?', + prompt: 'What Pokémon should be fused as the body?', type: 'string', validate: body => { if (pokemon[body.toLowerCase()]) return true; @@ -22,7 +22,7 @@ module.exports = class PokemonFusionCommand extends Command { }, { key: 'palette', - prompt: 'What Pokémon should be fused?', + prompt: 'What Pokémon should be fused as the palette?', type: 'string', validate: palette => { if (pokemon[palette.toLowerCase()]) return true; @@ -36,6 +36,6 @@ module.exports = class PokemonFusionCommand extends Command { run(msg, args) { const { body, palette } = args; - return msg.say(`http://images.alexonsager.net/pokemon/fused/${body}/${palette}.${body}.png`); + return msg.say(`http://images.alexonsager.net/pokemon/fused/${body}/${body}.${palette}.png`); } };