We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2055579 commit 3a7f267Copy full SHA for 3a7f267
package.json
@@ -227,7 +227,9 @@
227
"cypress",
228
"esbuild",
229
"fsevents"
230
- ]
+ ],
231
+ "ignorePatchFailures": false,
232
+ "allowUnusedPatches": false
233
},
234
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
235
}
src/mineflayer/websocket-core.ts
@@ -22,6 +22,8 @@ export const getWebsocketStream = async (host: string) => {
22
ws.send(data)
23
})
24
25
+ clientDuplex.on('error', () => {})
26
+
27
ws.addEventListener('message', async message => {
28
let { data } = message
29
if (data instanceof Blob) {
0 commit comments