ye
This commit is contained in:
parent
93ea0c124d
commit
a3c904d867
1 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ bot.on('systemChat', (packet) => {
|
||||||
const msg = parseMinecraftMessage(packet.formattedMessage);
|
const msg = parseMinecraftMessage(packet.formattedMessage);
|
||||||
const nocolormsg = parseMinecraftMessageNoColor(packet.formattedMessage);
|
const nocolormsg = parseMinecraftMessageNoColor(packet.formattedMessage);
|
||||||
const cspy = parseCommand(nocolormsg)
|
const cspy = parseCommand(nocolormsg)
|
||||||
|
if (!cspy) bot.emit('custom_Commandspy', msg);
|
||||||
if (jsonmsg === undefined) { // idk, but work
|
if (jsonmsg === undefined) { // idk, but work
|
||||||
if (msg !== undefined) bot.emit('custom_systemChat', msg, nocolormsg, false);
|
if (msg !== undefined) bot.emit('custom_systemChat', msg, nocolormsg, false);
|
||||||
} else {
|
} else {
|
||||||
|
@ -200,7 +201,7 @@ function parseMinecraftMessageNoColor(component) {
|
||||||
}
|
}
|
||||||
if (comp && typeof comp === 'string' || typeof comp === 'number' && comp !== undefined && comp !== null) {
|
if (comp && typeof comp === 'string' || typeof comp === 'number' && comp !== undefined && comp !== null) {
|
||||||
return comp;
|
return comp;
|
||||||
}}
|
}
|
||||||
if (comp.extra) {
|
if (comp.extra) {
|
||||||
comp.extra.forEach(subComp => {
|
comp.extra.forEach(subComp => {
|
||||||
text += extractText(subComp);
|
text += extractText(subComp);
|
||||||
|
|
Loading…
Reference in a new issue