Browse Source
default to 0 instead of 15 for Guild.sticker_limit
pull/7421/head
Nadir Chowdhury
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/guild.py
|
|
@ -717,7 +717,7 @@ class Guild(Hashable): |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
""" |
|
|
|
more_stickers = 60 if 'MORE_STICKERS' in self.features else 15 |
|
|
|
more_stickers = 60 if 'MORE_STICKERS' in self.features else 0 |
|
|
|
return max(more_stickers, self._PREMIUM_GUILD_LIMITS[self.premium_tier].stickers) |
|
|
|
|
|
|
|
@property |
|
|
|