Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
Fix item nbt translator
Mineplex server seemed to be sensitive about quotes in string tags
Dieser Commit ist enthalten in:
Ursprung
08357ed8b2
Commit
12c049709a
@ -91,6 +91,7 @@ public class ItemTranslator {
|
|||||||
|
|
||||||
private CompoundTag translateToJavaNBT(com.nukkitx.nbt.tag.CompoundTag tag) {
|
private CompoundTag translateToJavaNBT(com.nukkitx.nbt.tag.CompoundTag tag) {
|
||||||
CompoundTag javaTag = new CompoundTag(tag.getName());
|
CompoundTag javaTag = new CompoundTag(tag.getName());
|
||||||
|
Map<String, Tag> javaValue = javaTag.getValue();
|
||||||
if (tag.getValue() != null && !tag.getValue().isEmpty()) {
|
if (tag.getValue() != null && !tag.getValue().isEmpty()) {
|
||||||
for (String str : tag.getValue().keySet()) {
|
for (String str : tag.getValue().keySet()) {
|
||||||
com.nukkitx.nbt.tag.Tag bedrockTag = tag.get(str);
|
com.nukkitx.nbt.tag.Tag bedrockTag = tag.get(str);
|
||||||
@ -98,10 +99,11 @@ public class ItemTranslator {
|
|||||||
if (translatedTag == null)
|
if (translatedTag == null)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
javaTag.getValue().put(str, translatedTag);
|
javaValue.put(str, translatedTag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
javaTag.setValue(javaValue);
|
||||||
return javaTag;
|
return javaTag;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,7 +155,7 @@ public class ItemTranslator {
|
|||||||
|
|
||||||
if (tag instanceof com.nukkitx.nbt.tag.StringTag) {
|
if (tag instanceof com.nukkitx.nbt.tag.StringTag) {
|
||||||
com.nukkitx.nbt.tag.StringTag stringTag = (com.nukkitx.nbt.tag.StringTag) tag;
|
com.nukkitx.nbt.tag.StringTag stringTag = (com.nukkitx.nbt.tag.StringTag) tag;
|
||||||
return new StringTag(stringTag.getName(), stringTag.getValue());
|
return new StringTag(stringTag.getName(), '"' + stringTag.getValue() + '"');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tag instanceof com.nukkitx.nbt.tag.ListTag) {
|
if (tag instanceof com.nukkitx.nbt.tag.ListTag) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren