From c07739115a60101e0fb0671bcbe99921c4889293 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 11 Oct 2018 13:08:30 +0200 Subject: [PATCH] wont show error if not oneof the type --- commands/fun/face.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/commands/fun/face.js b/commands/fun/face.js index 0c75bd8c..ae89c152 100644 --- a/commands/fun/face.js +++ b/commands/fun/face.js @@ -16,8 +16,9 @@ module.exports = class faceappCommand extends Command { }, { key: 'type', - prompt: 'How the face should change ?', + prompt: 'How the face should change ? (default to female)', type: 'string', + oneOf: ["no-filter", "smile", "smile_2", "hot", "old", "young", "hollywood", "fun_glasses", "hitman", "mustache_free", "pan", "heisenberg", "female", "female_2", "male", "impression", "goatee", "mustache", "hipster", "lion", "bangs", "glasses", "wave", "makeup"] } ] }); @@ -29,7 +30,7 @@ module.exports = class faceappCommand extends Command { let { body } = await superagent.get(url) let image = await faceapp.process(body, face) message.channel.sendFile(image) - } else - message.say("You need to input a link") - } + } else + message.say("You need to input a link") + } }; \ No newline at end of file