13
0
geforkt von Mirrors/Velocity

Send the FML marker if we are not performing legacy forwarding.

Dieser Commit ist enthalten in:
Daniel Naylor 2018-09-05 19:19:37 +01:00
Ursprung 9888f6f6f0
Commit 10da7daf1d

Datei anzeigen

@ -109,6 +109,8 @@ public class VelocityServerConnection implements MinecraftConnectionAssociation,
handshake.setProtocolVersion(proxyPlayer.getConnection().getProtocolVersion());
if (forwardingMode == PlayerInfoForwarding.LEGACY) {
handshake.setServerAddress(createBungeeForwardingAddress());
} else if (proxyPlayer.getConnection().isLegacyForge()) {
handshake.setServerAddress(handshake.getServerAddress() + "\0FML\0");
} else {
handshake.setServerAddress(serverInfo.getAddress().getHostString());
}