#reaction on respond

1 messages · Page 1 of 1 (latest)

split marsh
#

how can i add a reaction emoji on a ctx.respond
'''
msg = await ctx.respond(embed=embed)
await msg.add_reaction("📩")
'''
I tried like this, but it gives an error

#

is it even possible to react on respond messages from slash commands ?
when i use prefix it will add the reaction
but in / command is not working

flat ice
#

you need to fetch it

#

using msg = await ctx.interaction.original_response()

flat ice