Add Guild.splash_url_as

This commit is contained in:
Matt (IPv4)
2018-10-05 16:42:13 +01:00
committed by Rapptz
parent fed01c5e15
commit 3727ea9811
2 changed files with 38 additions and 7 deletions

View File

@ -290,8 +290,8 @@ async def sane_wait_for(futures, *, timeout, loop):
raise asyncio.TimeoutError()
def valid_icon_size(size):
"""Icons must be power of 2 within [16, 1024]."""
return ((size != 0) and not (size & (size - 1))) and size in range(16, 1025)
"""Icons must be power of 2 within [16, 2048]."""
return ((size != 0) and not (size & (size - 1))) and size in range(16, 2049)
class SnowflakeList(array.array):
"""Internal data storage class to efficiently store a list of snowflakes.