Info in chatparser.js

This commit is contained in:
Yaode_owo 2024-11-18 07:53:22 -05:00
parent 6c01f81814
commit fd35dfb5e2

View file

@ -481,10 +481,7 @@ function parseMinecraftMessage(component) {
return text;
}
const themsg = extractText(component) + ansiMap['reset'];
console.log(JSON.stringify(component, null, 2))
console.log(JSON.stringify(themsg))
return themsg;
return extractText(component) + ansiMap['reset'];
}