Skip to content

Commit

Permalink
Update to new sticker limit (#1420)
Browse files Browse the repository at this point in the history
Update guild.py
  • Loading branch information
baronkobama authored Jun 14, 2022
1 parent 912bd8f commit 404fca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discord/guild.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ class Guild(Hashable):
)

_PREMIUM_GUILD_LIMITS: ClassVar[Dict[Optional[int], _GuildLimit]] = {
None: _GuildLimit(emoji=50, stickers=0, bitrate=96e3, filesize=8388608),
0: _GuildLimit(emoji=50, stickers=0, bitrate=96e3, filesize=8388608),
None: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=8388608),
0: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=8388608),
1: _GuildLimit(emoji=100, stickers=15, bitrate=128e3, filesize=8388608),
2: _GuildLimit(emoji=150, stickers=30, bitrate=256e3, filesize=52428800),
3: _GuildLimit(emoji=250, stickers=60, bitrate=384e3, filesize=104857600),
Expand Down

0 comments on commit 404fca1

Please sign in to comment.