diff --git a/utils/embeds.py b/utils/embeds.py index b8a6ba7..ddd43e5 100644 --- a/utils/embeds.py +++ b/utils/embeds.py @@ -50,7 +50,7 @@ def __init__( title="Uh oh! Something went wrong.", description=description, color=discord.Color.red(), - thumbnail="http://bkan0n.com/assets/images/icons/error.png", + thumbnail="https://bkan0n.com/assets/images/icons/error.png", ) else: super().__init__( @@ -75,7 +75,7 @@ def set_embed_thumbnail_maps(map_name: str, embed: discord.Embed) -> discord.Emb The embed object with the thumbnail set to a map's image """ map_name = re.sub(r"[:'\s]", "", map_name).lower() - embed.set_thumbnail(url=f"http://bkan0n.com/assets/images/maps/{map_name}.png") + embed.set_thumbnail(url=f"https://bkan0n.com/assets/images/maps/{map_name}.png") return embed