-
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
send offline uuid to client and server if ip-forward is disabled #3656
Conversation
btw how do i make my commits signed in intellij? |
Settings -> Version Control -> Git |
This looks extremely nice. Tested? |
Yes worked fine for me |
@@ -62,7 +62,7 @@ public void rewriteServerbound(ByteBuf packet, int oldId, int newId) | |||
int packetId = DefinedPacket.readVarInt( packet ); | |||
int packetIdLength = packet.readerIndex() - readerIndex; | |||
|
|||
if ( packetId == spectateId && !BungeeCord.getInstance().getConfig().isIpForward() ) | |||
if ( packetId == spectateId ) |
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.
Does this change need to be made to all the rewriters?
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.
yes it does i forgot and did not notice because it makes only a difference if bungeecord is reloaded and ipforward is changed
Thanks! |
old pr #3650
i think this pr is a much nicer solution