mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-11-02 08:37:39 +01:00
fix(arabot): fix sending pings with fun commands
This commit is contained in:
parent
dcacffe908
commit
da0e231760
@ -64,6 +64,6 @@ export class HugCommand extends Command {
|
||||
.setFooter({ text: `Amount of hugs given from ${hugger.username} to you: ${count}` });
|
||||
|
||||
// Send the hug
|
||||
await interaction.reply({ content: `${user.id}`, embeds: [hugEmbed], fetchReply: true });
|
||||
await interaction.reply({ content: `${user}`, embeds: [hugEmbed], fetchReply: true });
|
||||
}
|
||||
}
|
||||
|
||||
@ -69,6 +69,6 @@ export class KillCommand extends Command {
|
||||
.setFooter({ text: `Amount of kills from ${sender.username} to you: ${count}` });
|
||||
|
||||
// Send the kill
|
||||
await interaction.reply({ content: `${user.id}`, embeds: [killEmbed], fetchReply: true });
|
||||
await interaction.reply({ content: `${user}`, embeds: [killEmbed], fetchReply: true });
|
||||
}
|
||||
}
|
||||
|
||||
@ -64,6 +64,6 @@ export class PokeCommand extends Command {
|
||||
.setFooter({ text: `Amount of pokes from ${sender.username} to you: ${count}` });
|
||||
|
||||
// Send the poke
|
||||
await interaction.reply({ content: `<@${user.id}>`, embeds: [pokeEmbed], fetchReply: true });
|
||||
await interaction.reply({ content: `${user}`, embeds: [pokeEmbed], fetchReply: true });
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user