diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 93b0bc76..fda0b604 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -381,6 +381,10 @@ class BotBase(GroupMixin): if owner: owners.append(owner) return owners + else: + # We didn't have owners cached yet, cache them and retry. + await self.populate_owners() + return await self.try_owners() async def populate_owners(self): """|coro|