diff --git a/app/bot.py b/app/bot.py index 66c8ec01..5876626a 100755 --- a/app/bot.py +++ b/app/bot.py @@ -178,6 +178,19 @@ async def meme(ctx): ) ) +@bot.command(name='lewd') +async def lewd(ctx): + if not ctx.message.channel.is_nsfw(): + await ctx.send('You can only use this command in NSFW channels') + return + import lewds + await ctx.send( + embed=generate_embed( + embed_url=lewds.get_lewd(), + embed_title="{} is being lewd".format(ctx.message.author.name) + ) + ) + @bot.command(name='redpanda') async def redpanda(ctx):