Compare commits
2 commits
610be72b7a
...
d860f2ce6a
Author | SHA1 | Date | |
---|---|---|---|
d860f2ce6a | |||
76d49a4597 |
1 changed files with 4 additions and 4 deletions
8
bot.py
8
bot.py
|
@ -53,10 +53,10 @@ async def fox(ctx):
|
|||
|
||||
@bot.command(brief="give someone a cuddle")
|
||||
async def hug(ctx, *, name=None):
|
||||
if not name:
|
||||
return await ctx.send("Foxtrot hugs "+ctx.author.name+"! :3")
|
||||
#await ctx.send(ctx.author.name+f" hugs {name}! :3")
|
||||
await ctx.send("This command is currently disabled until an issue is fixed.")
|
||||
if not name:
|
||||
return await ctx.send("Foxtrot hugs "+ctx.author.name.replace("@", "")+"! :3")
|
||||
nameFixed = name.replace("@everyone", "everyone").replace("@here", "everyone here")
|
||||
await ctx.send(ctx.author.name+f" hugs {nameFixed}! :3")
|
||||
|
||||
@bot.command(brief="gives the top.gg vote link")
|
||||
async def vote(ctx):
|
||||
|
|
Loading…
Reference in a new issue