refactor(economy): improve labels for stackable and max inventory fields in item editor

This commit is contained in:
2025-10-05 01:35:55 -05:00
parent bec3a7fbfb
commit 696e444846
3 changed files with 2 additions and 4 deletions

View File

@@ -35,7 +35,6 @@ export const command: CommandMessage = {
const editorMsg = await message.channel.send({
content: `👾 Editor de Mob: \`${key}\``,
flags: MessageFlags.IsComponentsV2,
components: [ { type: 1, components: [
{ type: 2, style: ButtonStyle.Primary, label: 'Base', custom_id: 'mb_base' },
{ type: 2, style: ButtonStyle.Secondary, label: 'Stats (JSON)', custom_id: 'mb_stats' },
@@ -93,4 +92,3 @@ async function showJsonModal(i: ButtonInteraction, state: MobEditorState, field:
} else { state[field] = field==='stats' ? { attack: 5 } : {}; await sub.reply({ content: ' Limpio.', flags: MessageFlags.Ephemeral }); }
} catch {}
}