diff --git a/core/bot.py b/core/bot.py index 3b9dbb318..1039c6366 100644 --- a/core/bot.py +++ b/core/bot.py @@ -34,7 +34,7 @@ class Red(commands.Bot): async def is_owner(self, user, allow_coowners=True): if allow_coowners: - if user.id in self.settings.coowners: + if user.id in self.db.get_global("coowners", []): return True return await super().is_owner(user)