3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-16 14:11:50 +00:00

Update backend/src/plugins/Utility/commands/ColorCmd.ts

Co-authored-by: Almeida <almeidx@pm.me>
This commit is contained in:
Usoka 2021-05-26 07:31:08 +12:00 committed by GitHub
parent d8dc3b5bd8
commit 29da6c5354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ export const ColorCmd = utilityCmd({
permission: "can_color", permission: "can_color",
signature: { signature: {
color: ct.string({ required: false }) color: ct.string({ required: true })
}, },
async run({ message, args, pluginData }) { async run({ message, args, pluginData }) {
@ -36,4 +36,4 @@ export const ColorCmd = utilityCmd({
message.channel.createMessage('', file); message.channel.createMessage('', file);
}, },
}); });