diff --git a/main/chatparser.js b/main/chatparser.js index 4166de7..b0bdad9 100644 --- a/main/chatparser.js +++ b/main/chatparser.js @@ -19,6 +19,7 @@ bot.on('systemChat', (packet) => { const msg = parseMinecraftMessage(packet.formattedMessage); const nocolormsg = parseMinecraftMessageNoColor(packet.formattedMessage); const cspy = parseCommand(nocolormsg) + if (!cspy) bot.emit('custom_Commandspy', msg); if (jsonmsg === undefined) { // idk, but work if (msg !== undefined) bot.emit('custom_systemChat', msg, nocolormsg, false); } else { @@ -200,7 +201,7 @@ function parseMinecraftMessageNoColor(component) { } if (comp && typeof comp === 'string' || typeof comp === 'number' && comp !== undefined && comp !== null) { return comp; - }} + } if (comp.extra) { comp.extra.forEach(subComp => { text += extractText(subComp);