fix(economy): remove deprecated flags from item editor messages

This commit is contained in:
2025-10-05 01:28:12 -05:00
parent d04f54eb3d
commit bec3a7fbfb
2 changed files with 0 additions and 3 deletions

View File

@@ -56,7 +56,6 @@ export const command: CommandMessage = {
const editorMsg = await message.channel.send({
content: `🛠️ Editor de Item: \`${key}\`\nUsa los botones para configurar los campos y luego guarda.`,
flags: MessageFlags.IsComponentsV2,
components: [
{ type: 1, components: [
{ type: 2, style: ButtonStyle.Primary, label: 'Base', custom_id: 'it_base' },

View File

@@ -49,7 +49,6 @@ export const command: CommandMessage = {
const editorMsg = await message.channel.send({
content: `🛠️ Editor de Item (editar): \`${key}\``,
flags: MessageFlags.IsComponentsV2,
components: [ { type: 1, components: [
{ type: 2, style: ButtonStyle.Primary, label: 'Base', custom_id: 'it_base' },
{ type: 2, style: ButtonStyle.Secondary, label: 'Tags', custom_id: 'it_tags' },
@@ -141,4 +140,3 @@ async function showPropsModal(i: ButtonInteraction, state: ItemEditorState) {
else { state.props = {}; await sub.reply({ content: ' Props limpiados.', flags: MessageFlags.Ephemeral }); }
} catch {}
}