Browse Source

Use Guild.owner_id in Guild.edit when checking if the bot owns a guild.

pull/2266/head
Rapptz 6 years ago
parent
commit
edcd9459e3
  1. 2
      discord/guild.py

2
discord/guild.py

@ -1095,7 +1095,7 @@ class Guild(Hashable):
fields['system_channel_id'] = system_channel.id
if 'owner' in fields:
if self.owner != self.me:
if self.owner_id != self._state.self_id:
raise InvalidArgument('To transfer ownership you must be the owner of the guild.')
fields['owner_id'] = fields['owner'].id

Loading…
Cancel
Save