mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-31 20:13:33 +01:00
Fix SpawnEggMeta#get/setSpawnedType
This commit is contained in:
parent
2e77028ed4
commit
71e08c0a8d
1 changed files with 24 additions and 0 deletions
|
@ -94,6 +94,30 @@ public class CraftMetaSpawnEgg extends CraftMetaItem implements SpawnEggMeta {
|
|||
public void setSpawnedType(EntityType type) {
|
||||
throw new UnsupportedOperationException("Must change item type to set spawned type");
|
||||
}
|
||||
// Paper start
|
||||
@Override
|
||||
public EntityType getCustomSpawnedType() {
|
||||
return java.util.Optional.ofNullable(this.entityTag)
|
||||
.map(tag -> tag.getString(ENTITY_ID.NBT))
|
||||
.map(net.minecraft.resources.ResourceLocation::tryParse)
|
||||
.map(key -> key.getNamespace().equals("minecraft") ? EntityType.fromName(key.getPath()) : null)
|
||||
.orElse(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCustomSpawnedType(final EntityType type) {
|
||||
if (type == null) {
|
||||
if (this.entityTag != null) {
|
||||
this.entityTag.remove(ENTITY_ID.NBT);
|
||||
}
|
||||
} else {
|
||||
if (this.entityTag == null) {
|
||||
this.entityTag = new CompoundTag();
|
||||
}
|
||||
this.entityTag.putString(ENTITY_ID.NBT, type.key().toString());
|
||||
}
|
||||
}
|
||||
// Paper end
|
||||
|
||||
@Override
|
||||
public EntitySnapshot getSpawnedEntity() {
|
||||
|
|
Loading…
Add table
Reference in a new issue