fix argument error for setting embed image
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s

This commit is contained in:
Corban-Lee Jones 2024-12-06 12:51:51 +00:00
parent 21bd1589a4
commit ed22e552a1

View File

@ -120,7 +120,7 @@ class ConsoleCog(commands.Cog):
description="Player has joined the server",
colour=Colour.brand_green()
)
embed.set_image(user.steam_profile_picture_url)
embed.set_image(url=user.steam_profile_picture_url)
await channel.send(embed=embed)
@ -154,7 +154,7 @@ class ConsoleCog(commands.Cog):
description="Player has left the server",
colour=Colour.brand_red()
)
embed.set_image(user.steam_profile_picture_url)
embed.set_image(url=user.steam_profile_picture_url)
await channel.send(embed=embed)