-
-
Notifications
You must be signed in to change notification settings - Fork 971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CorruptedFrameException on 1.20.3 protocol #3378
Labels
Comments
Can you reproduce on a vanilla server? This is odd as we don't get the error on CI. |
yes |
Please provide code to reproduce on vanilla 1.20.3 |
const {createBot} = require('mineflayer');
let bot = createBot({
host: 'hidden',
port: 25565,
username: 'gglglgll',
viewDistance: 'tiny',
keepAlive: true,
version: '1.20.4',
checkTimeoutInterval: 30000,
});
bot.on("end", (reason) => {
console.log("Bot " + bot.username + " ended for " + reason)
});
bot.on('messagestr', (msg,position,json) => {
console.log("Message: " + msg);
});
bot.on('kicked', (reason, loggedIn) => {
console.log("Bot " + bot.username + " kicked for " + JSON.stringify(reason) + " loggedIn: " + loggedIn);
});
bot.on('resourcePack', (url, uuid) => {
bot.acceptResourcePack();
});
bot.on("error", (err) => {
throw err;
}); As simple as that |
This issue seems to still be present in 4.26.0. It looks like this issue may have been incorrectly left in "waiting info from op" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Versions
Detailed description of a problem
Malformed protocol for ClientSettingsPacket
What did you try yet?
Join the client on Velocity proxy
##Error on Velocity
The text was updated successfully, but these errors were encountered: