mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-22 16:51:59 +00:00
default to 0 instead of 15 for Guild.sticker_limit
This commit is contained in:
parent
489e5f3288
commit
d4c683738d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user