diff options
| -rw-r--r-- | bot/cogs/snekbox.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/bot/cogs/snekbox.py b/bot/cogs/snekbox.py index 1c64c893b..04c0a5ae1 100644 --- a/bot/cogs/snekbox.py +++ b/bot/cogs/snekbox.py @@ -298,6 +298,11 @@ class Snekbox(Cog):              await ctx.invoke(self.bot.get_command("help"), "eval")              return +        if Roles.helpers in (role.id for role in ctx.author.roles): +            self.bot.stats.incr("evals.roles.helpers") +        else: +            self.bot.stats.incr("evals.roles.developers") +          log.info(f"Received code from {ctx.author} for evaluation:\n{code}")          while True: | 
