2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2017-06-17 19:20:25 +00: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
|
2021-03-03 22:43:45 +00:00
|
|
|
index 62c914893ffd40c0e88a9d11f04fb5c7dea9063a..14ab88c1a417c9b9a5fee1756006eb6cfcebc996 100644
|
2017-06-17 19:20:25 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
2021-03-03 22:43:45 +00:00
|
|
|
@@ -1784,20 +1784,44 @@ public abstract class EntityHuman extends EntityLiving {
|
2019-07-20 04:01:24 +00:00
|
|
|
|
2017-06-17 19:20:25 +00:00
|
|
|
}
|
2019-04-27 23:23:53 +00:00
|
|
|
|
2017-06-17 19:20:25 +00:00
|
|
|
+ // Paper start
|
|
|
|
+ public Entity releaseLeftShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityLeft());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityLeft(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
2019-04-27 23:23:53 +00:00
|
|
|
+
|
2017-06-17 19:20:25 +00:00
|
|
|
+ public Entity releaseRightShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityRight());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityRight(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
2019-04-27 23:23:53 +00:00
|
|
|
+ // Paper - maintain old signature
|
2019-07-20 04:01:24 +00:00
|
|
|
private boolean spawnEntityFromShoulder(NBTTagCompound nbttagcompound) { // CraftBukkit void->boolean
|
2019-04-27 23:23:53 +00:00
|
|
|
- if (!this.world.isClientSide && !nbttagcompound.isEmpty()) {
|
2017-06-17 19:20:25 +00:00
|
|
|
+ return spawnEntityFromShoulder0(nbttagcompound) != null;
|
|
|
|
+ }
|
2019-04-27 23:23:53 +00: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 19:20:25 +00:00
|
|
|
|
2019-12-11 23:43:22 +00:00
|
|
|
entity.setPosition(this.locX(), this.locY() + 0.699999988079071D, this.locZ());
|
2019-04-27 23:23:53 +00:00
|
|
|
- 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 19:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- return true; // CraftBukkit
|
2019-04-27 23:23:53 +00:00
|
|
|
+ return null; // Paper - return null
|
2017-06-17 19:20:25 +00:00
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
2019-06-03 03:26:25 +00:00
|
|
|
@Override
|
2017-06-17 19:20:25 +00:00
|
|
|
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
|
2021-03-03 22:43:45 +00:00
|
|
|
index 19cdff6eebb7c07d75b515dfa0d47bb762626150..4b0d0b1f8de44088b3433f3474757e6bd6519644 100644
|
2017-06-17 19:20:25 +00:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
2021-02-21 20:55:01 +00:00
|
|
|
@@ -493,6 +493,32 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
2019-07-28 14:32:14 +00:00
|
|
|
getHandle().getCooldownTracker().setCooldown(CraftMagicNumbers.getItem(material), ticks);
|
2017-06-17 19:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // 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 10:01:56 +00:00
|
|
|
public boolean discoverRecipe(NamespacedKey recipe) {
|
|
|
|
return discoverRecipes(Arrays.asList(recipe)) != 0;
|