fix item creation message

This commit is contained in:
Jill 2023-11-22 20:58:20 +03:00
parent 8f0fa740d7
commit 1a8d49ae9f
Signed by: oat
GPG Key ID: 33489AA58A955108
1 changed files with 1 additions and 1 deletions

View File

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