Fix incorrect toNative method in 1.17 adapter

This commit is contained in:
dordsor21 2022-01-04 13:28:29 +00:00
parent 7e96853b89
commit 42dacfc7ef
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -365,7 +365,7 @@ public final class PaperweightFaweAdapter extends CachedBukkitAdapter implements
final net.minecraft.nbt.CompoundTag minecraftTag = new net.minecraft.nbt.CompoundTag();
readEntityIntoTag(mcEntity, minecraftTag);
//add Id for AbstractChangeSet to work
final CompoundBinaryTag tag = (CompoundBinaryTag) toNative(minecraftTag);
final CompoundBinaryTag tag = (CompoundBinaryTag) toNativeBinary(minecraftTag);
final Map<String, BinaryTag> tags = new HashMap<>();
tag.keySet().forEach(key -> tags.put(key, tag.get(key)));
tags.put("Id", StringBinaryTag.of(id));