From e414d0fe0434413e595b28fae9eed536baf77e78 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 30 Aug 2023 20:49:06 -0400 Subject: [PATCH] [commands] Change default Bot.owner_ids to consider team roles --- discord/ext/commands/bot.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 363b6656c..b691c5af2 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -499,6 +499,12 @@ class BotBase(GroupMixin[None]): ``user`` parameter is now positional-only. + .. versionchanged:: 2.4 + + This function now respects the team member roles if the bot is team-owned. + In order to be considered an owner, they must be either an admin or + a developer. + Parameters ----------- user: :class:`.abc.User` @@ -516,9 +522,13 @@ class BotBase(GroupMixin[None]): return user.id in self.owner_ids else: - app = await self.application_info() # type: ignore + app: discord.AppInfo = await self.application_info() # type: ignore if app.team: - self.owner_ids = ids = {m.id for m in app.team.members} + self.owner_ids = ids = { + m.id + for m in app.team.members + if m.role in (discord.TeamMemberRole.admin, discord.TeamMemberRole.developer) + } return user.id in ids else: self.owner_id = owner_id = app.owner.id