From d4c683738d48e0ba4a5012405d2068b3ae18c385 Mon Sep 17 00:00:00 2001 From: Nadir Chowdhury Date: Thu, 19 Aug 2021 11:21:52 +0100 Subject: [PATCH] default to 0 instead of 15 for Guild.sticker_limit --- discord/guild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/guild.py b/discord/guild.py index dabea5d05..55de4aec2 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