1
0
mirror of https://gitlab.com/ddorn/tfjm-discord-bot.git synced 2024-12-25 17:42:23 +00:00

💩 improved bad code

This commit is contained in:
ddorn 2020-05-23 22:45:09 +02:00
parent e0c288289d
commit 0f541291f2

View File

@ -114,13 +114,12 @@ class TeamsCog(Cog, name="Teams"):
touriste_role = get(guild.roles, name=Role.TOURIST)
if tournoi == "Finale":
# we don't give the "Finaliste" role to the tourists, it would give them rights.
# to simplify branching we assign twice "Touriste"
touriste_role = touriste_role
# we don't give the "Finaliste" role to the tourists, it would give them rights.1
roles = (touriste_role,)
else:
roles = touriste_role, tournoi_role
await ctx.author.add_roles(
touriste_role, tournoi_role, reason="Demande via le bot."
)
await ctx.author.add_roles(*roles, reason="Demande via le bot.")
return f"{ctx.author.mention} à été ajouté comme spectateur pour {tournoi}."