aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch
diff options
context:
space:
mode:
authorKyle Wood <[email protected]>2021-04-24 17:01:33 -0500
committerKyle Wood <[email protected]>2021-04-25 18:37:43 -0500
commit3093b81fee3064603c368ab934eddf66ce304433 (patch)
treecb99f05b5f31de92c41af4cc40b4bef5f3cbf573 /Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch
parent1af696a05d21cbdd7b5a7170f95598c013257588 (diff)
downloadPaper-3093b81fee3064603c368ab934eddf66ce304433.tar.gz
Paper-3093b81fee3064603c368ab934eddf66ce304433.zip
Move patches
Diffstat (limited to 'Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch')
-rw-r--r--Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch60
1 files changed, 60 insertions, 0 deletions
diff --git a/Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch b/Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch
new file mode 100644
index 0000000000..ff34d8f05a
--- /dev/null
+++ b/Spigot-Server-Patches-Unmapped/0409-Entity-Jump-API.patch
@@ -0,0 +1,60 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: BillyGalbreath <[email protected]>
+Date: Sat, 8 Feb 2020 23:26:11 -0600
+Subject: [PATCH] Entity Jump API
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/EntityLiving.java b/src/main/java/net/minecraft/world/entity/EntityLiving.java
+index 750c568201acf447f598343437e67cb039423111..89abfdd32f47eed07080ff9d70440f0940628b4d 100644
+--- a/src/main/java/net/minecraft/world/entity/EntityLiving.java
++++ b/src/main/java/net/minecraft/world/entity/EntityLiving.java
+@@ -2876,8 +2876,10 @@ public abstract class EntityLiving extends Entity {
+ } else if (this.aQ() && (!this.onGround || d7 > d8)) {
+ this.c((Tag) TagsFluid.LAVA);
+ } else if ((this.onGround || flag && d7 <= d8) && this.jumpTicks == 0) {
++ if (new com.destroystokyo.paper.event.entity.EntityJumpEvent(getBukkitLivingEntity()).callEvent()) { // Paper
+ this.jump();
+ this.jumpTicks = 10;
++ } else { this.setJumping(false); } // Paper - setJumping(false) stops a potential loop
+ }
+ } else {
+ this.jumpTicks = 0;
+diff --git a/src/main/java/net/minecraft/world/entity/animal/EntityPanda.java b/src/main/java/net/minecraft/world/entity/animal/EntityPanda.java
+index f755607872920caae1410d38c431c16b5238c00f..711b322007a0973ff0aebf3c25efbae8fc7741d0 100644
+--- a/src/main/java/net/minecraft/world/entity/animal/EntityPanda.java
++++ b/src/main/java/net/minecraft/world/entity/animal/EntityPanda.java
+@@ -490,7 +490,9 @@ public class EntityPanda extends EntityAnimal {
+ EntityPanda entitypanda = (EntityPanda) iterator.next();
+
+ if (!entitypanda.isBaby() && entitypanda.onGround && !entitypanda.isInWater() && entitypanda.fh()) {
++ if (new com.destroystokyo.paper.event.entity.EntityJumpEvent(getBukkitLivingEntity()).callEvent()) { // Paper
+ entitypanda.jump();
++ } else { this.setJumping(false); } // Paper - setJumping(false) stops a potential loop
+ }
+ }
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+index ff586b8366a6298f1906551b068e8abb26fcabc7..b18292ef2e00b4ef8a0b2da5f63a596dbd04b1fd 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+@@ -799,5 +799,20 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
+ public boolean isHandRaised() {
+ return getHandle().isHandRaised();
+ }
++
++ @Override
++ public boolean isJumping() {
++ return getHandle().jumping;
++ }
++
++ @Override
++ public void setJumping(boolean jumping) {
++ getHandle().setJumping(jumping);
++ if (jumping && getHandle() instanceof EntityInsentient) {
++ // this is needed to actually make a mob jump
++ ((EntityInsentient) getHandle()).getControllerJump().jump();
++ }
++ }
++
+ // Paper end
+ }