Fix give command using the wrong username #178

Merged
Vylpes merged 1 commit from feature/174-give-user-name into develop 2024-03-01 20:03:34 +00:00
Showing only changes of commit c629dee2db - Show all commits

View file

@ -63,6 +63,6 @@ export default class Give extends Command {
await inventory.Save(Inventory, inventory);
await interaction.reply(`${card.name} given to ${interaction.user}, they now have ${inventory.Quantity}`);
await interaction.reply(`${card.name} given to ${user.username}, they now have ${inventory.Quantity}`);
}
}