2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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/world/entity/player/Player.java b/src/main/java/net/minecraft/world/entity/player/Player.java
|
2023-03-14 19:36:39 +01:00
|
|
|
index 34bcdda9b3e9040e8afc63db4ccb8292ebea3413..f98e25965c9d8fe348a209ef8d2a2109cd2294f2 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/player/Player.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/player/Player.java
|
2023-03-14 19:36:39 +01:00
|
|
|
@@ -2003,20 +2003,44 @@ public abstract class Player extends LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public Entity releaseLeftShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityLeft());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityLeft(new CompoundTag());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Entity releaseRightShoulderEntity() {
|
|
|
|
+ Entity entity = this.spawnEntityFromShoulder0(this.getShoulderEntityRight());
|
|
|
|
+ if (entity != null) {
|
|
|
|
+ this.setShoulderEntityRight(new CompoundTag());
|
|
|
|
+ }
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+ // Paper - maintain old signature
|
|
|
|
private boolean spawnEntityFromShoulder(CompoundTag nbttagcompound) { // CraftBukkit void->boolean
|
|
|
|
- if (!this.level.isClientSide && !nbttagcompound.isEmpty()) {
|
|
|
|
+ return spawnEntityFromShoulder0(nbttagcompound) != null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Paper - return entity
|
|
|
|
+ private Entity spawnEntityFromShoulder0(@Nullable CompoundTag nbttagcompound) {
|
|
|
|
+ if (!this.level.isClientSide && nbttagcompound != null && !nbttagcompound.isEmpty()) {
|
|
|
|
return EntityType.create(nbttagcompound, this.level).map((entity) -> { // CraftBukkit
|
|
|
|
if (entity instanceof TamableAnimal) {
|
|
|
|
((TamableAnimal) entity).setOwnerUUID(this.uuid);
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.setPos(this.getX(), this.getY() + 0.699999988079071D, this.getZ());
|
2021-11-23 15:03:50 +01:00
|
|
|
- return ((ServerLevel) this.level).addWithUUID(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY); // CraftBukkit
|
2021-06-11 14:02:28 +02:00
|
|
|
- }).orElse(true); // CraftBukkit
|
2021-11-23 15:03:50 +01:00
|
|
|
+ boolean addedToWorld = ((ServerLevel) this.level).addWithUUID(entity, CreatureSpawnEvent.SpawnReason.SHOULDER_ENTITY); // CraftBukkit
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return addedToWorld ? entity : null;
|
2021-11-23 15:03:50 +01:00
|
|
|
+ }).orElse(null); // CraftBukkit // Paper - true -> null
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- return true; // CraftBukkit
|
|
|
|
+ return null; // Paper - return null
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
@Override
|
|
|
|
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
|
2023-02-07 16:55:53 +01:00
|
|
|
index e38c32708ac7969dbc342989d2a5a767e26e4c3d..139c4310a31b6cc149de140751cb8bf3d8226010 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
2023-02-07 16:55:53 +01:00
|
|
|
@@ -517,6 +517,32 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
2021-06-12 13:18:01 +02:00
|
|
|
this.getHandle().getCooldowns().addCooldown(CraftMagicNumbers.getItem(material), ticks);
|
2021-06-11 14:02:28 +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
|
|
|
|
public boolean discoverRecipe(NamespacedKey recipe) {
|
2021-06-12 13:18:01 +02:00
|
|
|
return this.discoverRecipes(Arrays.asList(recipe)) != 0;
|