From 3a24cda92727ec523dac3eb9808973a334c36f2b Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 29 Jan 2017 21:04:42 -0500 Subject: [PATCH] Faster implementation of Guild.default_channel. --- discord/guild.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/guild.py b/discord/guild.py index 799e9ea27..5569c4c88 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -110,8 +110,8 @@ class Guild(Hashable): __slots__ = ('afk_timeout', 'afk_channel', '_members', '_channels', 'icon', 'name', 'id', 'unavailable', 'name', 'region', '_state', - '_default_role', '_default_channel', 'roles', '_member_count', - 'large', 'owner_id', 'mfa_level', 'emojis', 'features', + '_default_role', 'roles', '_member_count', 'large', + 'owner_id', 'mfa_level', 'emojis', 'features', 'verification_level', 'splash', '_voice_states' ) def __init__(self, *, data, state): @@ -282,10 +282,10 @@ class Guild(Hashable): """Gets the @everyone role that all members have by default.""" return utils.find(lambda r: r.is_default(), self.roles) - @utils.cached_slot_property('_default_channel') + @property def default_channel(self): """Gets the default :class:`TextChannel` for the guild.""" - return utils.find(lambda c: c.is_default(), self.text_channels) + return self.get_channel(self.id) @property def owner(self):