diff options
author | 2021-07-05 20:00:59 -0400 | |
---|---|---|
committer | 2021-07-05 20:00:59 -0400 | |
commit | 1905f7cf62370f98ca4e484b54cf912353856a35 (patch) | |
tree | dd796e6b6889955a466271955a6e8899c8fb0199 | |
parent | chore: Remove the moderators role from the team channels' overwrites (diff) |
chore: Change the `Code Jam Team Leader` role's name
Co-authored-by: Boris Muratov <[email protected]>
-rw-r--r-- | bot/exts/utils/jams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/jams.py b/bot/exts/utils/jams.py index b2f7dab04..87ae847f6 100644 --- a/bot/exts/utils/jams.py +++ b/bot/exts/utils/jams.py @@ -64,7 +64,7 @@ class CodeJams(commands.Cog): teams[row["Team Name"]].append((member, row["Team Leader"].upper() == "Y")) - team_leaders = await ctx.guild.create_role(name="Team Leaders", colour=TEAM_LEADERS_COLOUR) + team_leaders = await ctx.guild.create_role(name="Code Jam Team Leaders", colour=TEAM_LEADERS_COLOUR) for team_name, members in teams.items(): await self.create_team_channel(ctx.guild, team_name, members, team_leaders) |