You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This aims to allow users to create more fleshed-out responses with familiar Kotlin DSL. The custom class also enables building embeds with DSL.
Added SlashContext#replyAsync(Modal)
Added Context#respond(DSLMessageCreateBuilder)
Removals
Removed Context#respond(EmbedBuilder)
The signature clashed with the new Context#respond(DSLMessageCreateBuilder). As the new method offers more functionality, embed was removed in favour of this. However, porting should be trivial as it now becomes ctx.respond { embed { ... } }.