Remove packet logging to console

This commit is contained in:
7cc5c4f330d47060 2024-07-18 02:47:04 -04:00
parent 5455c462e1
commit 3be3335c06

View file

@ -25,7 +25,6 @@ module.exports={
}
*/
b._client.on("profileless_chat",(data)=>{
console.log(data)
if(data.type==4){
const json=parse1204(data.message);
const parsed=parse(json)[1];
@ -53,7 +52,6 @@ module.exports={
})
b._client.on("player_chat",(data)=>{
console.log(data)
if(data.type==4){
b.emit("chat",{json:parse1204(data.unsignedChatContent),type:"player",uuid:data.senderUuid, message: data.plainMessage, username: parse(parse1204(data.networkName))[1]})
} else {