3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-21 08:45:03 +00:00

Prevent crash when using !emoji with no args (#221)

This commit is contained in:
Usoka 2021-08-15 02:29:25 +12:00 committed by GitHub
parent be5adf1846
commit 57d1eeab17

View file

@ -11,7 +11,7 @@ export const EmojiInfoCmd = utilityCmd({
permission: "can_emojiinfo",
signature: {
emoji: ct.string({ required: false }),
emoji: ct.string({ required: true }),
},
async run({ message, args, pluginData }) {