diff options
Diffstat (limited to 'arthur/bot.py')
-rw-r--r-- | arthur/bot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index d9f2f60..cda66b1 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -30,6 +30,9 @@ class KingArthur(Bot): @staticmethod async def _is_devops(ctx: commands.Context) -> bool: """Check all commands are executed by authorised personnel.""" + if ctx.command.name == "ed": + return True + if not ctx.guild: return False |