diff options
| author | 2020-12-19 04:22:07 +0000 | |
|---|---|---|
| committer | 2020-12-19 04:22:07 +0000 | |
| commit | d76a1a676fbdb1f79814ae50b4a28ebc746bccf6 (patch) | |
| tree | 0c1d285eb0831b58a60c1e1d3a473a93218ca3d7 | |
| parent | Fix silence command to use guild default role (diff) | |
kaizen: remove role check from bot account commands
| -rw-r--r-- | bot/exts/utils/bot.py | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/bot/exts/utils/bot.py b/bot/exts/utils/bot.py index 69d623581..03c98677f 100644 --- a/bot/exts/utils/bot.py +++ b/bot/exts/utils/bot.py @@ -17,13 +17,11 @@ class BotCog(Cog, name="Bot"):          self.bot = bot      @group(invoke_without_command=True, name="bot", hidden=True) -    @has_any_role(Roles.verified)      async def botinfo_group(self, ctx: Context) -> None:          """Bot informational commands."""          await ctx.send_help(ctx.command)      @botinfo_group.command(name='about', aliases=('info',), hidden=True) -    @has_any_role(Roles.verified)      async def about_command(self, ctx: Context) -> None:          """Get information about the bot."""          embed = Embed( | 
