shayypy / guilded.py

Asynchronous Guilded API wrapper for Python
https://guildedpy.rtfd.io
Other
135 stars 25 forks source link

Cant send Embeds #33

Closed Jigsaw88 closed 2 years ago

Jigsaw88 commented 2 years ago

Describe the bug You cant send Embeds.

To Reproduce Code: @bot.command() async def EmbedTest(ctx): embed = guilded.Embed(Title="Test Title", desciption="Test Description", color=0x00ff00) embed.add_field(name="Field 1", value="Field 1 Value", inline=False) await ctx.send(embed=embed)

Screenshots image

Code: image

Environment

shayypy commented 2 years ago

Are you on the latest commit? Embeds have only been supported since https://github.com/shayypy/guilded.py/commit/2eaf9dfbf645b9ed97f606f20229c165431f8b8c

Jigsaw88 commented 2 years ago

yea thats the issue, i used the version from pypi. I updated it and now it works, thanks.