2019-05-22 06:14:56 +02:00
|
|
|
From a38c394099198387d94095fd1536ab7583ef2c45 Mon Sep 17 00:00:00 2001
|
2017-06-17 21:20:25 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 17 Jun 2017 15:18:30 -0400
|
|
|
|
Subject: [PATCH] Shoulder Entities Release API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
2019-05-22 06:14:56 +02:00
|
|
|
index 3cb04543d1..05942fb7ed 100644
|
2017-06-17 21:20:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
2019-04-28 01:23:53 +02:00
|
|
|
@@ -1781,20 +1781,45 @@ public abstract class EntityHuman extends EntityLiving {
|
2017-06-17 21:20:25 +02:00
|
|
|
// CraftBukkit end
|
|
|
|
}
|
2019-04-28 01:23:53 +02:00
|
|
|
|
2017-06-17 21:20:25 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ public Entity releaseLeftShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityLeft());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityLeft(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
2019-04-28 01:23:53 +02:00
|
|
|
+
|
2017-06-17 21:20:25 +02:00
|
|
|
+ public Entity releaseRightShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityRight());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityRight(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+
|
2019-04-28 01:23:53 +02:00
|
|
|
+ // Paper - maintain old signature
|
|
|
|
private boolean spawnEntityFromShoulder(@Nullable NBTTagCompound nbttagcompound) { // CraftBukkit void->boolean
|
|
|
|
- if (!this.world.isClientSide && !nbttagcompound.isEmpty()) {
|
2017-06-17 21:20:25 +02:00
|
|
|
+ return spawnEntityFromShoulder0(nbttagcompound) != null;
|
|
|
|
+ }
|
2019-04-28 01:23:53 +02:00
|
|
|
+
|
|
|
|
+ // Paper - return entity
|
|
|
|
+ private Entity spawnEntityFromShoulder0(@Nullable NBTTagCompound nbttagcompound) {
|
|
|
|
+ if (!this.world.isClientSide && nbttagcompound != null && !nbttagcompound.isEmpty()) {
|
|
|
|
return EntityTypes.a(nbttagcompound, this.world).map((entity) -> { // CraftBukkit
|
|
|
|
if (entity instanceof EntityTameableAnimal) {
|
|
|
|
((EntityTameableAnimal) entity).setOwnerUUID(this.uniqueID);
|
|
|
|
}
|
2017-06-17 21:20:25 +02:00
|
|
|
|
2019-04-28 01:23:53 +02:00
|
|
|
entity.setPosition(this.locX, this.locY + 0.699999988079071D, this.locZ);
|
|
|
|
- return ((WorldServer) this.world).addEntitySerialized(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY); // CraftBukkit
|
|
|
|
- }).orElse(true); // CraftBukkit
|
|
|
|
+ boolean addedToWorld = ((WorldServer) this.world).addEntitySerialized(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY); // CraftBukkit
|
|
|
|
+ return addedToWorld ? entity : null;
|
|
|
|
+ }).orElse(null); // CraftBukkit // Paper - false -> null
|
2017-06-17 21:20:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- return true; // CraftBukkit
|
2019-04-28 01:23:53 +02:00
|
|
|
+ return null; // Paper - return null
|
2017-06-17 21:20:25 +02:00
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public abstract boolean isSpectator();
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
2019-05-22 06:14:56 +02:00
|
|
|
index 772f919b6c..bb4dde0de0 100644
|
2017-06-17 21:20:25 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
2019-05-22 06:14:56 +02:00
|
|
|
@@ -660,6 +660,32 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
2017-06-17 21:20:25 +02:00
|
|
|
getHandle().getCooldownTracker().a(CraftMagicNumbers.getItem(material), ticks);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public org.bukkit.entity.Entity releaseLeftShoulderEntity() {
|
|
|
|
+ if (!getHandle().getShoulderEntityLeft().isEmpty()) {
|
|
|
|
+ Entity entity = getHandle().releaseLeftShoulderEntity();
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ return entity.getBukkitEntity();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public org.bukkit.entity.Entity releaseRightShoulderEntity() {
|
|
|
|
+ if (!getHandle().getShoulderEntityRight().isEmpty()) {
|
|
|
|
+ Entity entity = getHandle().releaseRightShoulderEntity();
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ return entity.getBukkitEntity();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Override
|
2018-10-02 12:01:56 +02:00
|
|
|
public boolean discoverRecipe(NamespacedKey recipe) {
|
|
|
|
return discoverRecipes(Arrays.asList(recipe)) != 0;
|
2017-06-17 21:20:25 +02:00
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2017-06-17 21:20:25 +02:00
|
|
|
|