diff --git a/src/commands/item.ts b/src/commands/item.ts index 439d64a..0e291fd 100644 --- a/src/commands/item.ts +++ b/src/commands/item.ts @@ -223,7 +223,7 @@ export default { }) .returning('*'); - await interaction.followUp(`${JSON.stringify(item[0])}`); + await interaction.followUp(`${formatItem(item[0])} has been successfully created! 🎉\nYou can now use \`/item behavior\` to give it some custom functionality.`); } else if (group === 'behavior') { const itemID = parseInt(interaction.options.getString('customitem', true)); const item = await getCustomItem(itemID);