From fc1438aceb6713f7858f4eaa8c3024e7631e0abe Mon Sep 17 00:00:00 2001 From: Louis Mazin Date: Wed, 11 Mar 2026 16:57:00 +0100 Subject: [PATCH] test --- palworld-bridge.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/palworld-bridge.js b/palworld-bridge.js index 6fd1421..dbacb74 100644 --- a/palworld-bridge.js +++ b/palworld-bridge.js @@ -123,7 +123,10 @@ const parsePalworldChatAndSend = async (log) => { console.log(`⏭️ [BRIDGE] Commande !lier ignorée`); return; } - + if (messageContent.toLowerCase().startsWith('!')) { + console.log(`⏭️ [BRIDGE] Message ignoré (commence par !)`); + return; + } try { // Récupérer le salon console.log(`🔍 [BRIDGE] Récupération du salon ${bridgeChannelId}...`);