From b2b87b3678ef58cca1640c54fe912a442b87ca6c Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 22 Feb 2025 17:19:10 -0800 Subject: [PATCH] Comment out lewd --- app/cogs/cheeky_functions.py | 46 ++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 30fbef82..c1f9c1c8 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -348,29 +348,29 @@ class Cheeky(commands.Cog): # await ctx.message.delete() await ctx.respond(file=discord.File("/tmp/tweet.jpg")) - @commands.slash_command( - guild_ids=None, name="lewd", description="Posts nsfw content" - ) - async def lewd(self, ctx: commands.Context): - if not ctx.channel.is_nsfw(): - await ctx.send("You can only use this command in NSFW channels") - return - # import lewds - # await ctx.send( - # embed=core_utils.generate_embed( - # embed_url=lewds.get_lewd(), - # embed_title="{} is being lewd".format(ctx.message.author.name), - # ) - # ) - await ctx.defer() - await ctx.send_followup( - embed=core_utils.generate_embed( - embed_title="{} is being lewd".format(ctx.author.name), - embed_url=core_utils.waifu_pics( - endpoint=random.choice(["waifu", "neko", "blowjob"]), nsfw=True - ), - ) - ) + # @commands.slash_command( + # guild_ids=None, name="lewd", description="Posts nsfw content" + # ) + # async def lewd(self, ctx: commands.Context): + # if not ctx.channel.is_nsfw(): + # await ctx.send("You can only use this command in NSFW channels") + # return + # # import lewds + # # await ctx.send( + # # embed=core_utils.generate_embed( + # # embed_url=lewds.get_lewd(), + # # embed_title="{} is being lewd".format(ctx.message.author.name), + # # ) + # # ) + # await ctx.defer() + # await ctx.send_followup( + # embed=core_utils.generate_embed( + # embed_title="{} is being lewd".format(ctx.author.name), + # embed_url=core_utils.waifu_pics( + # endpoint=random.choice(["waifu", "neko", "blowjob"]), nsfw=True + # ), + # ) + # ) @commands.slash_command( guild_ids=None,