-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Login packet is sent after ServerSwitchEvent is called for 1.20.2 players #3542
Comments
This is unavoidable due to Mojang's addition of an extra step in the protocol. What exactly is the bug you think needs addressing? |
I am unable to use the event to send stuff, because it gets cleared right away. So I need a workaround. |
Maybe a suitable solution could be to move But to be honest with this change I feel even more lost inside bungee's code. What is called in which state of the protocol, what will happen afterwards etc. I think there is a need of some diagrams detailing what methods will be called and which packets are sent/expected to be recieved for first connection / server switches per mc version. |
I think something has to give, it is impossible for 1.20.1 and 1.20.2 to have the same behaviour. If not this (minor) difference you get a much bigger difference of the connection not being in a state to send most packets. |
Do you think we can somehow distinguish between an initial connect or server switch in the ServerConnectedEvent? This would at least the problem I am facing with the changes in 1.20.2. |
Adding an event when login packet is sent would also solve this. |
Is there any progress to this? |
Will this be fixed? |
What progress / fix are you expecting given the above comments? |
Presumably? Provide a solution for players who use your software. Bungeecord is one of the most important pieces of networking software right next to Velocity. While there are forks who try to patch these issues, it would be nice if stuff gets solved downstream. As plugin developers have to take the blame when a user goes "WAAA, your plugin doesnt work!!!! WHAAAA, I will review you 1 star because bungeecord doesn't work, WHAAAA". While this isn't even the fault of the developers of a plugin, but the software the plugin runs on. |
They're welcome to provide a pull request upstream. As per the ticket above it's very unclear what the fix for this is or if it's even a bug. Please explain what about BungeeCord is not working. You haven't contributed anything helpful to this discussion. |
Some food for thought, it would be beneficial if there was some event that could be fired when the configuration stage is completed on the client and they are now in the GAME protocol state. I guess it's fair that this event firing here would cause these errors, but I think it's most reasonable to assume that the current functionality of the event doesn't really serve the best purpose-wise. Most notably previous code that communicated with the backend server in this stage now errors due to the player not yet being in the world. (Bukkit#getPlayer returns null) I now add a ~500 MS delay after this event's invocation before trying to communicate with the backend (java server)... however, this is not the perfect solution as the client can potentially take longer than 500ms to ack the actual configuration stage. |
Bungeecord version
Build 1751 (edited to add debug messages & stack traces)
Server version
Spigot 1.20.2
Client version
1.20.2
Bungeecord plugins
A plugin to confirm this issue
The bug
Unlike with 1.20.1 and lower, on 1.20.2 the Login packet is sent after ServerSwitchEvent is called.
The issue with this is that Login packet clears the client (most notably scoreboard teams and objectives), including those sent during the event.
For 1.20.1 and lower the event is called after login packet is sent, allowing to use the event to send data to players. For 1.20.2, I would either need to listen to the Login packet or delay my task when the event is called, both of which are suboptimal solutions.
After tons of debugging I found out that on 1.20.2 the
handleLogin
method which sends the packet is called from DownstreamBridge, which is after ServerSwitchEvent was called.On 1.20.1 and lower, the method is called in ServerConnector, before ServerSwitchEvent was called, allowing to send data immediately.
I have also noticed that calling
sendPacketQueued
during the event does not queue the packets, but sends them immediately.I'm not really sure if this is a bug or intended, so I'm looking for any kind of solution to this problem.
Log output (links)
Debug stack trace for sending Login packet on 1.20.2 (after ServerSwitchEvent was called)
Debug stack trace for sending Login packet on 1.20.1 (before ServerSwitchEvent was called):
Checking
The text was updated successfully, but these errors were encountered: