This commit is contained in:
Dragon Fire
2024-03-24 00:12:18 -04:00
parent 17ea23ad81
commit 9af988203c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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',
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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'
}
]
});