Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/zorak/cogs/admin/verification_on_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def send_welcome_message(self, guild, member):
Before you are allowed to chat, you need to verify that you are NOT a bot.\n
Dont worry, it's easy.
Just go to {self.bot.get_channel(self.bot.server_settings.mod_channel['verification_channel']).mention}
and use the **/verify** slash command.
and use the **/verify** command.

After you do, all of {guild.name} is available to you. Have a great time :-)
"""
Expand Down
2 changes: 1 addition & 1 deletion src/zorak/cogs/admin/verification_on_verified.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __init__(self, bot):
# If you wanted to prepopulate the view with a user's current roles,
# I think you could do it here. Grab the user object from ctx,
# grab the roles, and pass it into the view. Which can then pass it into the dropdowns.
@commands.slash_command(description="Verification!")
@commands.command(description="Verification!")
async def verify(self, ctx):
"""The slash command that initiates the fancy menus."""
if str(type(ctx.channel)) == "<class 'discord.channel.DMChannel'>":
Expand Down
Loading