Skip to content

Commit

Permalink
default to 0 instead of 15 for Guild.sticker_limit
Browse files Browse the repository at this point in the history
  • Loading branch information
NCPlayz committed Aug 19, 2021
1 parent 489e5f3 commit d4c6837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/guild.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def sticker_limit(self) -> int:
.. 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
Expand Down

0 comments on commit d4c6837

Please sign in to comment.