Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-20 06:50:08 +01:00
Ursprung
54b0345017
Commit
576682ef9f
@ -199,7 +199,7 @@ public class BukkitViaInjector implements ViaInjector {
|
|||||||
@Override
|
@Override
|
||||||
public int getServerProtocolVersion() throws Exception {
|
public int getServerProtocolVersion() throws Exception {
|
||||||
if (PaperViaInjector.PAPER_PROTOCOL_METHOD) {
|
if (PaperViaInjector.PAPER_PROTOCOL_METHOD) {
|
||||||
// *Trust me, it's safe*
|
//noinspection deprecation
|
||||||
return Bukkit.getUnsafe().getProtocolVersion();
|
return Bukkit.getUnsafe().getProtocolVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ public class InventoryPackets {
|
|||||||
rewriteAttributeName(attribute, "AttributeName", true);
|
rewriteAttributeName(attribute, "AttributeName", true);
|
||||||
rewriteAttributeName(attribute, "Name", true);
|
rewriteAttributeName(attribute, "Name", true);
|
||||||
IntArrayTag uuidTag = attribute.get("UUID");
|
IntArrayTag uuidTag = attribute.get("UUID");
|
||||||
if (uuidTag != null) {
|
if (uuidTag != null && uuidTag.getValue().length == 4) {
|
||||||
UUID uuid = UUIDIntArrayType.uuidFromIntArray(uuidTag.getValue());
|
UUID uuid = UUIDIntArrayType.uuidFromIntArray(uuidTag.getValue());
|
||||||
attribute.put("UUIDLeast", new LongTag(uuid.getLeastSignificantBits()));
|
attribute.put("UUIDLeast", new LongTag(uuid.getLeastSignificantBits()));
|
||||||
attribute.put("UUIDMost", new LongTag(uuid.getMostSignificantBits()));
|
attribute.put("UUIDMost", new LongTag(uuid.getMostSignificantBits()));
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren