-
Notifications
You must be signed in to change notification settings - Fork 378
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
Network related notes and changes #3624
Conversation
mappings/net/minecraft/server/network/ServerPlayNetworkHandler.mapping
Outdated
Show resolved
Hide resolved
@@ -13,6 +13,6 @@ CLASS net/minecraft/class_8610 net/minecraft/server/network/ServerConfigurationN | |||
METHOD method_52407 (Lnet/minecraft/server/MinecraftServer$class_7460;)V | |||
ARG 1 properties | |||
METHOD method_52409 sendConfigurations ()V | |||
METHOD method_52410 queueJoinWorldTask ()V | |||
METHOD method_52410 endConfiguration ()V |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think this is correct, this method is only called from the unconfig debug command, and is not used during normal login/play. cancelConfiguration
may be slightly better?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't immediately end configuration indeed, but it prevents further tasks effectively. And its body is the same as the end of the sendConfiguration method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its not wrong, and it is better than queueJoinWorldTask. Unless you have another idea im happy to go with this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess will go with this and see mojang changes in snapshot
….mapping Co-authored-by: apple502j <[email protected]>
🚀 Target branch has been updated to 23w32a |
🎉 Target branch is already set to 23w32a |
play ping/pong -> common ping/pong
brand custom payload is both s2c and c2s
ConnectionIntent is only used by c2s handshake
Notes for ticking handlers and packet-based state transitions