From 40f7d8dace707183d2e81936b535fad06cae7fe1 Mon Sep 17 00:00:00 2001 From: derpystuff <3515180-derpystuff@users.noreply.gitlab.com> Date: Thu, 23 Feb 2023 23:19:03 +0100 Subject: [PATCH] disable anime --- commands/message/image/anime.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/message/image/anime.js b/commands/message/image/anime.js index 37653d7..2413b94 100644 --- a/commands/message/image/anime.js +++ b/commands/message/image/anime.js @@ -12,7 +12,7 @@ module.exports = { description_short: 'AI Anime image generation', explicit: true, examples: ['anime otter'], - category: 'image', + category: 'disabled', usage: 'anime ' }, ratelimit: { @@ -21,6 +21,7 @@ module.exports = { duration: 5000 }, run: async (context, args) => { + return; if(!context.channel.nsfw) return editOrReply(context, {embeds:[createEmbed("nsfw", context)]}) if(args.query.length == 0) return editOrReply(context, {embeds:[createEmbed("warning", context, "Missing prompt")]})