2019-03-20 02:46:00 +01:00
|
|
|
From 136778b9063d11c79042422caeed11e550c8004e 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-03-20 01:28:15 +01:00
|
|
|
index 23e7cdfe8..298012f37 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-03-20 01:28:15 +01:00
|
|
|
@@ -1831,21 +1831,48 @@ public abstract class EntityHuman extends EntityLiving {
|
2017-06-17 21:20:25 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ public Entity releaseLeftShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityLeft());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityLeft(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- private boolean spawnEntityFromShoulder(@Nullable NBTTagCompound nbttagcompound) { // CraftBukkit void->boolean
|
|
|
|
- if (!this.world.isClientSide && !nbttagcompound.isEmpty()) {
|
|
|
|
+ public Entity releaseRightShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityRight());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityRight(new NBTTagCompound());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Paper - incase any plugins used NMS to call this... old method signature to avoid other diff
|
|
|
|
+ private boolean spawnEntityFromShoulder(@Nullable NBTTagCompound nbttagcompound) {
|
|
|
|
+ return spawnEntityFromShoulder0(nbttagcompound) != null;
|
|
|
|
+ }
|
2017-06-17 23:15:25 +02:00
|
|
|
+ // Paper - Moved to new method that now returns entity, and properly null checks
|
2017-06-17 21:20:25 +02:00
|
|
|
+ private Entity spawnEntityFromShoulder0(@Nullable NBTTagCompound nbttagcompound) { // CraftBukkit void->boolean - Paper - return Entity
|
|
|
|
+ if (!this.world.isClientSide && nbttagcompound != null && !nbttagcompound.isEmpty()) { // Paper - null check
|
|
|
|
Entity entity = EntityTypes.a(nbttagcompound, this.world);
|
|
|
|
+ if (entity == null) { // Paper - null check
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
if (entity instanceof EntityTameableAnimal) {
|
|
|
|
((EntityTameableAnimal) entity).setOwnerUUID(this.uniqueID);
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.setPosition(this.locX, this.locY + 0.699999988079071D, this.locZ);
|
|
|
|
- return this.world.addEntity(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY); // CraftBukkit
|
|
|
|
+ if (this.world.addEntity(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY)) { // CraftBukkit
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
- return true; // CraftBukkit
|
|
|
|
+ return null;
|
|
|
|
}
|
|
|
|
+ // 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-03-20 01:28:15 +01:00
|
|
|
index 79d125567..d5dbc4ca8 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-01-02 19:10:14 +01:00
|
|
|
@@ -556,6 +556,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
|
|
|
|