diff options
author | 2018-02-09 10:25:19 +0000 | |
---|---|---|
committer | 2018-02-09 10:25:19 +0000 | |
commit | 38bf79c1d50f4dffa8ad9b7cdae7c66b91581466 (patch) | |
tree | 3f0791f95d00543a074e22e2bdc27a3872632127 | |
parent | Fix missing alias for info command (diff) |
Require verified role for info wrapper command
-rw-r--r-- | bot/cogs/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index 545bfd47b..339a58241 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -52,6 +52,7 @@ class Bot: await ctx.send(embed=embed) @command(name="bot.info()", aliases=["bot.info", "bot.about", "bot.about()", "info", "info()"]) + @with_role(VERIFIED_ROLE) async def info_wrapper(self, ctx: Context): """ Get information about the bot |