Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-19 14:30:16 +01:00
Fix hoverEvent translation from 1.20.2 to 1.20.3 in some cases (#3591)
Dieser Commit ist enthalten in:
Ursprung
18f2cf25cd
Commit
0e31664bfe
@ -193,16 +193,17 @@ public final class ComponentConverter {
|
|||||||
// Store show_entity id as int array instead of uuid string
|
// Store show_entity id as int array instead of uuid string
|
||||||
// Not really required, but we might as well make it more compact
|
// Not really required, but we might as well make it more compact
|
||||||
final JsonObject hoverEvent = value.getAsJsonObject();
|
final JsonObject hoverEvent = value.getAsJsonObject();
|
||||||
|
final CompoundTag convertedTag = (CompoundTag) convertToTag(value);
|
||||||
|
|
||||||
final JsonElement id = hoverEvent.get("id");
|
final JsonElement id = hoverEvent.get("id");
|
||||||
final UUID uuid;
|
final UUID uuid;
|
||||||
if (id != null && id.isJsonPrimitive() && (uuid = UUIDUtil.parseUUID(id.getAsString())) != null) {
|
if (id != null && id.isJsonPrimitive() && (uuid = UUIDUtil.parseUUID(id.getAsString())) != null) {
|
||||||
hoverEvent.remove("id");
|
convertedTag.remove("id");
|
||||||
|
|
||||||
final CompoundTag convertedTag = (CompoundTag) convertToTag(value);
|
|
||||||
convertedTag.put("id", new IntArrayTag(UUIDUtil.toIntArray(uuid)));
|
convertedTag.put("id", new IntArrayTag(UUIDUtil.toIntArray(uuid)));
|
||||||
tag.put(key, convertedTag);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tag.put(key, convertedTag);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
tag.put(key, convertToTag(value));
|
tag.put(key, convertToTag(value));
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren