diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 1b8cc03d..6467eafc 100644 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -251,10 +251,19 @@ class Cheeky(commands.Cog): return import lewds - await ctx.send( + # 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.reply( embed=core_utils.generate_embed( - embed_url=lewds.get_lewd(), embed_title="{} is being lewd".format(ctx.message.author.name), + embed_url=core_utils.waifu_pics( + endpoint=random.choice(["waifu", "neko", "blowjob"]), nsfw=True + ), ) )