diff options
author | 2021-08-26 15:06:54 +0200 | |
---|---|---|
committer | 2021-08-26 15:06:54 +0200 | |
commit | 8cac7f077b14265783ae558fff65cbcd2bef00d6 (patch) | |
tree | 1090900759f235ba986198c2d137787da02564db | |
parent | Merge pull request #795 from D0rs4n/pr/wikipediaissue (diff) | |
parent | Limit internal eval commands to owner if bot in debug mode (diff) |
Merge pull request #818 from python-discord/int-eval-owner-check
Limit internal eval to bot owner when in debug mode
-rw-r--r-- | bot/constants.py | 2 | ||||
-rw-r--r-- | bot/exts/internal_eval/_internal_eval.py | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index bb602361..6323af80 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -134,7 +134,7 @@ class Client(NamedTuple): prefix = environ.get("PREFIX", ".") token = environ.get("BOT_TOKEN") sentry_dsn = environ.get("BOT_SENTRY_DSN") - debug = environ.get("BOT_DEBUG", "").lower() == "true" + debug = environ.get("BOT_DEBUG", "true").lower() == "true" github_bot_repo = "https://github.com/python-discord/sir-lancebot" # Override seasonal locks: 1 (January) to 12 (December) month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None diff --git a/bot/exts/internal_eval/_internal_eval.py b/bot/exts/internal_eval/_internal_eval.py index 56bf5add..b7749144 100644 --- a/bot/exts/internal_eval/_internal_eval.py +++ b/bot/exts/internal_eval/_internal_eval.py @@ -7,7 +7,7 @@ import discord from discord.ext import commands from bot.bot import Bot -from bot.constants import Roles +from bot.constants import Client, Roles from bot.utils.decorators import with_role from bot.utils.extensions import invoke_help_command from ._helpers import EvalContext @@ -41,6 +41,9 @@ class InternalEval(commands.Cog): self.bot = bot self.locals = {} + if Client.debug: + self.internal_group.add_check(commands.is_owner().predicate) + @staticmethod def shorten_output( output: str, |