From 7bd28794d691ebfc6872039ef8c27faac141301e Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Fri, 3 Jul 2026 08:53:43 +0200 Subject: [PATCH] increase max packet size for data_plugins, some plugin keeps fucking it (tropo plugin i think) --- server/web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/web.js b/server/web.js index d00cc26..b133c80 100644 --- a/server/web.js +++ b/server/web.js @@ -252,7 +252,7 @@ pluginsWss.on('connection', (ws, request) => { ws.on('message', message => { // Anti-spam - const msg2 = helpers.antispamProtection(message, clientIp, ws, userCommands, lastWarn, userCommandHistory, '10', 'data_plugins'); + const msg2 = helpers.antispamProtection(message, clientIp, ws, userCommands, lastWarn, userCommandHistory, '10', 'data_plugins', 1024 * 1024 * 2); if(!msg2) return; try {