2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-08-25 04:22:08 +02:00
|
|
|
index 196d1a7fa8ac9249ca061a704b2403c7bf1f4eb1..b64eecae09241360b6997200f931eb3a63470dab 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
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -1783,20 +1783,44 @@ public abstract class EntityHuman extends EntityLiving {
|
2019-07-20 06:01:24 +02:00
|
|
|
|
2017-06-17 21:20:25 +02:00
|
|
|
}
|
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
|
2019-07-20 06:01:24 +02:00
|
|
|
private boolean spawnEntityFromShoulder(NBTTagCompound nbttagcompound) { // CraftBukkit void->boolean
|
2019-04-28 01:23:53 +02:00
|
|
|
- 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-12-12 00:43:22 +01:00
|
|
|
entity.setPosition(this.locX(), this.locY() + 0.699999988079071D, this.locZ());
|
2019-04-28 01:23:53 +02: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 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
|
|
|
|
|
2019-06-03 05:26:25 +02:00
|
|
|
@Override
|
2017-06-17 21:20:25 +02: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
|
2020-09-11 01:47:58 +02:00
|
|
|
index af41d9f11c6da2609bd75e49f15f5ec129b92361..65144fac2d36b038bbf729bb2abe7b5a907d61fd 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
|
2020-07-02 01:41:58 +02:00
|
|
|
@@ -487,6 +487,32 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
2019-07-28 16:32:14 +02:00
|
|
|
getHandle().getCooldownTracker().setCooldown(CraftMagicNumbers.getItem(material), ticks);
|
2017-06-17 21:20:25 +02: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 12:01:56 +02:00
|
|
|
public boolean discoverRecipe(NamespacedKey recipe) {
|
|
|
|
return discoverRecipes(Arrays.asList(recipe)) != 0;
|