geforkt von Mirrors/Paper
SPIGOT-3605: Spawn eggs not saving internal data
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
01186b718b
Commit
009d5ad78b
@ -6,6 +6,7 @@ import java.util.Map;
|
|||||||
import net.minecraft.server.DataConverterTypes;
|
import net.minecraft.server.DataConverterTypes;
|
||||||
import net.minecraft.server.MinecraftKey;
|
import net.minecraft.server.MinecraftKey;
|
||||||
import net.minecraft.server.MinecraftServer;
|
import net.minecraft.server.MinecraftServer;
|
||||||
|
import net.minecraft.server.NBTBase;
|
||||||
import net.minecraft.server.NBTTagCompound;
|
import net.minecraft.server.NBTTagCompound;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.configuration.serialization.DelegateDeserialization;
|
import org.bukkit.configuration.serialization.DelegateDeserialization;
|
||||||
@ -66,6 +67,13 @@ public class CraftMetaSpawnEgg extends CraftMetaItem implements SpawnEggMeta {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
void serializeInternal(Map<String, NBTBase> internalTags) {
|
||||||
|
if (entityTag != null) {
|
||||||
|
internalTags.put(ENTITY_TAG.NBT, entityTag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
void applyToItem(NBTTagCompound tag) {
|
void applyToItem(NBTTagCompound tag) {
|
||||||
super.applyToItem(tag);
|
super.applyToItem(tag);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren