fix(arabot): fix sending pings with fun commands

This commit is contained in:
smyalygames 2023-03-08 16:57:00 +00:00
parent dcacffe908
commit da0e231760
3 changed files with 3 additions and 3 deletions

View File

@ -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 });
}
}

View File

@ -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 });
}
}

View File

@ -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 });
}
}