Browse Source

Add utility properties for MessageDeleteBulk

feature/docs
Andrei 8 years ago
parent
commit
729f778ef4
  1. 8
      disco/gateway/events.py

8
disco/gateway/events.py

@ -493,6 +493,14 @@ class MessageDeleteBulk(GatewayEvent):
channel_id = Field(snowflake)
ids = ListField(snowflake)
@property
def channel(self):
return self.client.state.channels.get(self.channel_id)
@property
def guild(self):
return self.channel.guild
@wraps_model(Presence)
class PresenceUpdate(GatewayEvent):

Loading…
Cancel
Save