mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 10:35:38 +01:00
dc684c60d1
The new behavior of disconnect to block the current thread until the disconnect succeeded is better than throwing it off to happen at some point
42 lines
1.7 KiB
Diff
42 lines
1.7 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Thu, 23 Feb 2023 13:19:13 -0800
|
|
Subject: [PATCH] Fix SpawnEggMeta#get/setSpawnedType
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSpawnEgg.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSpawnEgg.java
|
|
index ea9937ad27817112f71e8a0a816865961ce19a61..2c6ee95edea9dc959d8d31d689dc27fea4080467 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSpawnEgg.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSpawnEgg.java
|
|
@@ -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))
|
|
+ .flatMap(net.minecraft.world.entity.EntityType::byString)
|
|
+ .map(org.bukkit.craftbukkit.util.CraftMagicNumbers::getEntityType)
|
|
+ .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() {
|