From e88f66b2dcf5a45f79f9f9b7f7897bbdaaa7b5fe Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Sat, 14 Feb 2026 21:34:15 -0500 Subject: [PATCH] deleting unneeded commented out method --- src/helpers/webhookHelper.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/helpers/webhookHelper.js b/src/helpers/webhookHelper.js index 48ec9dc..71d5479 100644 --- a/src/helpers/webhookHelper.js +++ b/src/helpers/webhookHelper.js @@ -50,19 +50,6 @@ async function replaceMessage(client, message, channelId, text, member) { } } -// /** -// * Fluxer collapses same-name messages, so if two would be sent by different users, break them up with a tiny space. (Inspired by Tupperbox) -// * @param {string} channelId - The channel id to send the webhook message in. -// * @param {string} username - The text to send via the webhook. -// */ -// -// function preventSameNameCollapse(channelId, username) { -// -// if(bot.recent[msg.channel.id] && msg.author.id !== bot.recent[msg.channel.id][0].user_id && un === bot.recent[msg.channel.id][0].name) { -// username = un.substring(0,1) + "\u200a" + un.substring(1); -// } -// } - /** * Gets or creates a webhook. *