diff --git a/commands/edit-face/emoji-face.js b/commands/edit-face/emoji-face.js index d0b20edb..63850b38 100644 --- a/commands/edit-face/emoji-face.js +++ b/commands/edit-face/emoji-face.js @@ -20,7 +20,7 @@ module.exports = class EmojiFaceCommand extends Command { { key: 'emoji', prompt: 'What emoji do you want to draw?', - type: 'default-emoji|custom-emoji' + type: 'custom-emoji|default-emoji' }, { key: 'image', diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index 7210d403..f4a47568 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -34,7 +34,7 @@ module.exports = class ConnectFourCommand extends Command { { key: 'color', prompt: `What color do you want to be? Either an emoji or one of ${list(Object.keys(colors), 'or')}.`, - type: 'default-emoji|custom-emoji|string', + type: 'custom-emoji|default-emoji|string', validate: (color, msg) => { const hasEmoji = new RegExp(`^(?:${emojiRegex().toString()})$`).test(color); const hasCustom = color.match(customEmojiRegex); diff --git a/commands/info/emoji-image.js b/commands/info/emoji-image.js index 47fb4940..f1b64f15 100644 --- a/commands/info/emoji-image.js +++ b/commands/info/emoji-image.js @@ -21,7 +21,7 @@ module.exports = class EmojiImageCommand extends Command { { key: 'emoji', prompt: 'Which emoji would you like to get the image of?', - type: 'default-emoji|custom-emoji' + type: 'custom-emoji|default-emoji' } ] });