Browse Source
Merge branch 'staging/v1.0.0' into patch2
pull/153/head
Faster Speeding
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
17 additions and
2 deletions
-
disco/gateway/events.py
-
disco/state.py
-
disco/types/guild.py
-
disco/types/permissions.py
|
|
@ -714,3 +714,15 @@ class MessageReactionRemoveAll(GatewayEvent): |
|
|
|
@property |
|
|
|
def guild(self): |
|
|
|
return self.channel.guild |
|
|
|
|
|
|
|
|
|
|
|
@wraps_model(User) |
|
|
|
class UserUpdate(GatewayEvent): |
|
|
|
""" |
|
|
|
Sent when the client user is updated. |
|
|
|
|
|
|
|
Attributes |
|
|
|
----- |
|
|
|
user : :class:`disco.types.user.User` |
|
|
|
The updated user object. |
|
|
|
""" |
|
|
|
|
|
@ -153,6 +153,9 @@ class State(object): |
|
|
|
self.dms[dm.id] = dm |
|
|
|
self.channels[dm.id] = dm |
|
|
|
|
|
|
|
def on_user_update(self, event): |
|
|
|
self.me.inplace_update(event.user) |
|
|
|
|
|
|
|
def on_message_create(self, event): |
|
|
|
if self.config.track_messages: |
|
|
|
self.messages[event.message.channel_id].append( |
|
|
|
|
|
@ -344,7 +344,7 @@ class Guild(SlottedModel, Permissible): |
|
|
|
premium_tier = Field(int) |
|
|
|
premium_subscription_count = Field(int, default=0) |
|
|
|
vanity_url_code = Field(text) |
|
|
|
max_presences = Field(int) |
|
|
|
max_presences = Field(int, default=5000) |
|
|
|
max_members = Field(int) |
|
|
|
description = Field(text) |
|
|
|
|
|
|
|
|
|
@ -12,7 +12,7 @@ class Permissions(object): |
|
|
|
VIEW_AUDIT_LOG = 1 << 7 |
|
|
|
PRIORITY_SPEAKER = 1 << 8 |
|
|
|
STREAM = 1 << 9 |
|
|
|
READ_MESSAGES = 1 << 10 |
|
|
|
VIEW_CHANNEL = 1 << 10 |
|
|
|
SEND_MESSAGES = 1 << 11 |
|
|
|
SEND_TSS_MESSAGES = 1 << 12 |
|
|
|
MANAGE_MESSAGES = 1 << 13 |
|
|
|