1
0
mirror of https://gitlab.com/ddorn/tfjm-discord-bot.git synced 2025-08-14 21:59:47 +02:00

case case_insensitive bot

This commit is contained in:
ddorn
2020-05-18 16:51:23 +02:00
parent 7db0664252
commit b3eaacdd0b
5 changed files with 14 additions and 28 deletions

View File

@@ -125,7 +125,7 @@ class DevCog(Cog, name="Dev tools"):
await ctx.send(f":tada: L'extension **{name}** a bien été ajoutée !")
# noinspection PyUnreachableCode
@command(name="setup", hidden=True)
@command(name="setup")
@has_role(Role.DEV)
async def setup_roles(self, ctx):
"""
@@ -187,7 +187,7 @@ class DevCog(Cog, name="Dev tools"):
@command(name="send")
@has_role(Role.DEV)
async def send_cmd(self, ctx, *msg):
"""Envoie un message."""
"""(dev) Envoie un message."""
await ctx.message.delete()
await ctx.send(" ".join(msg))