We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0abe30 commit ce88413Copy full SHA for ce88413
changelog/1272.misc.rst
@@ -0,0 +1 @@
1
+Decrease the default :attr:`Guild.filesize_limit` from 25MB to 10MB.
disnake/guild.py
@@ -373,9 +373,9 @@ class Guild(Hashable):
373
)
374
375
_PREMIUM_GUILD_LIMITS: ClassVar[Dict[Optional[int], _GuildLimit]] = {
376
- None: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=26214400, sounds=8),
377
- 0: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=26214400, sounds=8),
378
- 1: _GuildLimit(emoji=100, stickers=15, bitrate=128e3, filesize=26214400, sounds=24),
+ None: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=10485760, sounds=8),
+ 0: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=10485760, sounds=8),
+ 1: _GuildLimit(emoji=100, stickers=15, bitrate=128e3, filesize=10485760, sounds=24),
379
2: _GuildLimit(emoji=150, stickers=30, bitrate=256e3, filesize=52428800, sounds=36),
380
3: _GuildLimit(emoji=250, stickers=60, bitrate=384e3, filesize=104857600, sounds=48),
381
}
0 commit comments