Send and Reply from the editable-commands plugin do the same wrong thing.

So I tried out both of them and none seems to respond on the interaction.
what I want: image 1
what I get; image 2
My code:
    public async runOnce(message: Message, _args: Args) {
        //respond with an interaction
        await reply(message, { content: 'UwU1' });
        await send(message, { content: 'UwU2' });
    }

Is the
editable-commands
plugin not ment for interaction responses?
If not, what is the correct way to implement a response / ephemeral reponse?
image.png
image.png
Solution
Answer:
Dont use the
editable-commands
Plugin for responses to Slashcommands.
This is how a valid Reply looks like
image.png
Was this page helpful?