Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Merge pull request #1496 from MrMicky-FR/master
Fix item hover event on 1.12
Dieser Commit ist enthalten in:
Commit
f8b4a6e28a
@ -3,6 +3,7 @@ package us.myles.ViaVersion.protocols.protocol1_12to1_11_1;
|
|||||||
import com.google.gson.JsonArray;
|
import com.google.gson.JsonArray;
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
|
import com.google.gson.JsonPrimitive;
|
||||||
import us.myles.ViaVersion.api.data.UserConnection;
|
import us.myles.ViaVersion.api.data.UserConnection;
|
||||||
|
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
@ -20,23 +21,30 @@ public class ChatItemRewriter {
|
|||||||
if (hoverEvent.has("action") && hoverEvent.has("value")) {
|
if (hoverEvent.has("action") && hoverEvent.has("value")) {
|
||||||
String type = hoverEvent.get("action").getAsString();
|
String type = hoverEvent.get("action").getAsString();
|
||||||
if (type.equals("show_item") || type.equals("show_entity")) {
|
if (type.equals("show_item") || type.equals("show_entity")) {
|
||||||
if (hoverEvent.get("value").isJsonPrimitive()) {
|
JsonElement value = hoverEvent.get("value");
|
||||||
if (hoverEvent.get("value").getAsJsonPrimitive().isString()) {
|
|
||||||
String value = hoverEvent.get("value").getAsString();
|
if (value.isJsonPrimitive() && value.getAsJsonPrimitive().isString()) {
|
||||||
value = indexRemoval.matcher(value).replaceAll("");
|
String newValue = indexRemoval.matcher(value.getAsString()).replaceAll("");
|
||||||
hoverEvent.addProperty("value", value);
|
hoverEvent.addProperty("value", newValue);
|
||||||
|
} else if (value.isJsonArray()) {
|
||||||
|
JsonArray newArray = new JsonArray();
|
||||||
|
|
||||||
|
for (JsonElement valueElement : value.getAsJsonArray()) {
|
||||||
|
if (valueElement.isJsonPrimitive() && valueElement.getAsJsonPrimitive().isString()) {
|
||||||
|
String newValue = indexRemoval.matcher(valueElement.getAsString()).replaceAll("");
|
||||||
|
newArray.add(new JsonPrimitive(newValue));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hoverEvent.add("value", newArray);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else if (obj.has("extra")) {
|
||||||
if (obj.has("extra")) {
|
toClient(obj.get("extra"), user);
|
||||||
toClient(obj.get("extra"), user);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
} else if (element instanceof JsonArray) {
|
||||||
if (element instanceof JsonArray) {
|
|
||||||
JsonArray array = (JsonArray) element;
|
JsonArray array = (JsonArray) element;
|
||||||
for (JsonElement value : array) {
|
for (JsonElement value : array) {
|
||||||
toClient(value, user);
|
toClient(value, user);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren