update help command
parent
fffe62a6a0
commit
c9763fb3b7
14
bot.py
14
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)
|
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(
|
embed.add_field(
|
||||||
name=">>shibe",
|
name=">>shibe",
|
||||||
value="shibe :dog: :eyes:"
|
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)
|
await ctx.send(embed=embed)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue