Browse Source

hug command added

tags/v1.3.0
roxie 6 years ago
parent
commit
be6ad431be
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      cogs/fun.py

+ 12
- 0
cogs/fun.py View File

@@ -74,6 +74,18 @@ class Fun():
return await self.bot.say("You didn't mention someone for me to suck")
return await self.bot.say(":eggplant: :sweat_drops: :tongue: *{} sucks {}*".format(self.bot.user.name, user.name))

@bot.command(pass_context=True)
async def hug(self, ctx, *, user: discord.User = None):
"""
Hugs the mentioned user :3
Usage:
{command_prefix}hug @RoxBot#4170
{command_prefix}hug RoxBot
"""
if not user:
return await self.bot.say("You didn't mention someone for me to hug")
return await self.bot.say(":blush: *{} hugs {}*".format(self.bot.user.name, user.name))

@bot.command(pass_context=True, aliases=["wf"])
async def waifurate(self, ctx):
"""

Loading…
Cancel
Save