Skip to content

Commit

Permalink
update github link
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkempire78 committed Aug 21, 2020
1 parent 299efd5 commit 1c3699b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cogs/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, bot):

@commands.command(name = 'help')
async def help (self, ctx):
embed = discord.Embed(title=f"__**Help page of {self.bot.user.name}**__", description="[**GitHub**]()", color=0xdeaa0c)
embed = discord.Embed(title=f"__**Help page of {self.bot.user.name}**__", description="[**GitHub**](https://github.com/Darkempire78/Raid-Protect-Discord-Bot)", color=0xdeaa0c)
embed.set_thumbnail(url=f'{self.bot.user.avatar_url}')
embed.add_field(name="__COMMANDS :__", value=f"**{self.bot.command_prefix}setup <on/off> :** Set up the captcha protection.\n**{self.bot.command_prefix}settings :** Display the list of settings.\n**{self.bot.command_prefix}giveroleaftercaptcha <role ID/off> :** Give a role after that the user passed the captcha.\n**{self.bot.command_prefix}minaccountage <number (hours)> :** set a minimum age to join the server (24 hours by default).\n**{self.bot.command_prefix}antiSpam <true/false> :** Enable or disable the spam protection.", inline=False)
embed.set_footer(text="Bot Created by Darkempire#8245")
Expand Down
2 changes: 1 addition & 1 deletion Cogs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def settings (self, ctx):
if roleGivenAfterCaptcha != False:
roleGivenAfterCaptcha = f"<@&{roleGivenAfterCaptcha}>"

embed = discord.Embed(title=f"**SERVER SETTINGS**", description=f"[**GitHub**]()", color=0xdeaa0c)
embed = discord.Embed(title=f"**SERVER SETTINGS**", description=f"[**GitHub**](https://github.com/Darkempire78/Raid-Protect-Discord-Bot)", color=0xdeaa0c)
embed.add_field(name= f"**CAPTCHA PROTECTION** - ``({self.bot.command_prefix}setup <on/off>)``", value= f"Captcha enabled : {captcha}\nCaptcha channel : <#{captchaChannel}>\nBot logs : <#{logChannel}>\nTemporary role : <@&{temporaryRole}>", inline=False)
embed.add_field(name= f"**ROLE GIVEN AFTER CAPTCHA** - ``({self.bot.command_prefix}giveroleaftercaptcha <role ID/off>)``", value= f"Role given after captcha : {roleGivenAfterCaptcha}", inline=False)
embed.add_field(name= f"**MINIMUM ACCOUNT AGE** - ``({self.bot.command_prefix}minaccountage <number (hours)>)``", value= f"Minimum account age : {minAccountAge} hours", inline=False)
Expand Down

0 comments on commit 1c3699b

Please sign in to comment.