13
0
geforkt von Mirrors/Velocity

UUID before username

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-07-31 00:48:56 -04:00
Ursprung 2f5ca386a6
Commit 91e977a7bd

Datei anzeigen

@ -104,8 +104,8 @@ public class LoginSessionHandler implements MinecraftSessionHandler {
private static ByteBuf createForwardingData(String address, GameProfile profile) {
ByteBuf buf = Unpooled.buffer();
ProtocolUtils.writeString(buf, address);
ProtocolUtils.writeString(buf, profile.getName());
ProtocolUtils.writeUuid(buf, profile.idAsUuid());
ProtocolUtils.writeString(buf, profile.getName());
ProtocolUtils.writeVarInt(buf, profile.getProperties().size());
for (GameProfile.Property property : profile.getProperties()) {
ProtocolUtils.writeString(buf, property.getName());