Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

0.5.0

Compare
Choose a tag to compare
@kiki7000 kiki7000 released this 28 May 09:01
· 226 commits to master since this release
  • Fixed minor bugs
  • Use dispatch method
    Now you have to change
await <DiscordComponents or Context>.wait_for_interact("button_click")

@<DiscordComponents>.on_interact("button_click")
async def on_button_click(res): ...

to

await <Client>.wait_for("button_click")

@<Client>.event
async def on_button_click(res): ...