mark all ai commands as broken for now

This commit is contained in:
derpystuff 2023-06-23 16:03:39 +02:00
parent 6cca320bd7
commit 1ea541bfb7
7 changed files with 14 additions and 7 deletions

View file

@ -13,11 +13,12 @@ module.exports = {
description: 'Generates an image with DeepAI Text2Image using a text prompt.',
description_short: 'Image from text prompt',
examples: ['text2image Mushroom'],
category: 'image',
category: 'broken',
usage: 'text2image <image>'
},
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.ATTACH_FILES],
run: async (context, args) => {
return;
context.triggerTyping();
try{
if(!args.text) return editOrReply(context, { embeds: [createEmbed("warning", context, "Missing parameter (text).")] })