feat: implement interactive item creation wizard via new /createitem command
This commit is contained in:
@@ -21,6 +21,10 @@ const event: Event<Events.InteractionCreate> = {
|
||||
await import("@/modules/economy/lootdrop.interaction").then(m => m.handleLootdropInteraction(interaction));
|
||||
return;
|
||||
}
|
||||
if (interaction.customId.startsWith("createitem_")) {
|
||||
await import("@/modules/admin/item_wizard").then(m => m.handleItemWizardInteraction(interaction));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (interaction.isAutocomplete()) {
|
||||
|
||||
Reference in New Issue
Block a user