diff options
| author | Nadir Chowdhury <[email protected]> | 2021-08-19 11:21:52 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-19 06:21:52 -0400 |
| commit | d4c683738d48e0ba4a5012405d2068b3ae18c385 (patch) | |
| tree | 669c174a5abb2586ea08b14a247280efbb4cd2cd /discord | |
| parent | Use channel default auto archive duration (diff) | |
| download | discord.py-d4c683738d48e0ba4a5012405d2068b3ae18c385.tar.xz discord.py-d4c683738d48e0ba4a5012405d2068b3ae18c385.zip | |
default to 0 instead of 15 for Guild.sticker_limit
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/guild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py index dabea5d0..55de4aec 100644 --- a/discord/guild.py +++ b/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 |