fix argument error for setting embed image
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s
This commit is contained in:
parent
21bd1589a4
commit
ed22e552a1
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user