From c9763fb3b7ca4a496ab6729226b1da34219948a4 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Sun, 8 Sep 2019 22:16:16 -0700 Subject: [PATCH] update help command --- bot.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/bot.py b/bot.py index e453606..18be9ff 100644 --- a/bot.py +++ b/bot.py @@ -67,16 +67,20 @@ async def help(ctx): value="Ban user. By default, the vote lasts {0} minutes, and requires that there be at least {1} votes and a 50% majority.".format(int(BAN_VOTE_TIME/60), MIN_BAN_VOTERS) ) - embed.add_field( - name=">>ping", - value="Get bot latency." - ) - embed.add_field( name=">>shibe", value="shibe :dog: :eyes:" ) + + embed.add_field( + name=">>birb", + value="birb :bird: :hatching_chick:" + ) + embed.add_field( + name=">>ping", + value="Get bot latency." + ) await ctx.send(embed=embed)