Skip to content

Commit

Permalink
Merge pull request #173 from MiscGuild/backend-redo
Browse files Browse the repository at this point in the history
Backend redo
  • Loading branch information
Amxgh authored Mar 21, 2024
2 parents 64859d2 + 739d36e commit 063163c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cogs/staff.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def rolecheck(self, ctx, send_ping: bool = True):
await General.rolecheck(ctx, send_ping)

@bridge.bridge_command()
@commands.has_role("new role")
@commands.has_role("Guild Master")
async def add_members(self, ctx):
await General.add_players(ctx)

Expand Down
2 changes: 1 addition & 1 deletion src/func/General.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ async def rolecheck(ctx, send_ping: bool):
continue
# Send ping to new mem
# ber role in registration channel
if not send_ping:
if send_ping:
await bot.get_channel(registration_channel_id).send(bot.new_member_role.mention, embed=registration_embed)

await progress_message.edit(content="Rolecheck complete!")
Expand Down

0 comments on commit 063163c

Please sign in to comment.