From 8c95b5eb8d0c4304ea8e3b5577c82d0c9820ec5b Mon Sep 17 00:00:00 2001 From: indifferentketchup <159190319+indifferentketchup@users.noreply.github.com> Date: Mon, 6 Apr 2026 17:19:13 -0500 Subject: [PATCH] escalation --- handlers/commands.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/handlers/commands.js b/handlers/commands.js index 719e819..e78727b 100644 --- a/handlers/commands.js +++ b/handlers/commands.js @@ -18,7 +18,6 @@ const { sendTicketNotificationEmail } = require('../services/gmail'); const { getTicketActionRow } = require('../utils/ticketComponents'); const { getEmailRouting } = require('../services/guildSettings'); const { enqueueRename, enqueueMove } = require('../services/channelQueue'); -const { moveStaffChannel } = require('../services/staffChannel'); const { setNotifyDm } = require('../services/staffSettings'); const { trackInteraction, trackError, getAnalyticsSummary } = require('./analytics'); const { handleAccountInfoCommand } = require('./accountinfo'); @@ -106,10 +105,6 @@ async function runEscalation(interaction, ticket, nextTier, reason) { if (renameInfoEsc.ok) await enqueueRename(interaction.channel, `${emoji}${baseName}`); const tierCategory = nextTier === 1 ? CONFIG.STAFF_T2_CATEGORY : CONFIG.STAFF_T3_CATEGORY; if (tierCategory) await enqueueMove(interaction.channel, tierCategory); - if (ticket.staffChannelId) { - const staffChan = await interaction.guild.channels.fetch(ticket.staffChannelId).catch(() => null); - if (staffChan) await moveStaffChannel(staffChan, tierCategory); - } } catch (e) { console.error('Staff tier category (escalate):', e); }