Paper/Spigot-Server-Patches/0009-Allow-nerfed-mobs-to-jump.patch

47 lines
1.8 KiB
Diff
Raw Normal View History

2016-03-07 22:54:14 +01:00
From 990076963be48fb550e05ccfa3faf24c35d1565b Mon Sep 17 00:00:00 2001
2015-01-29 22:25:50 +01:00
From: Zach Brown <zach.brown@destroystokyo.com>
2016-03-01 00:09:49 +01:00
Date: Tue, 1 Mar 2016 13:24:16 -0600
Subject: [PATCH] Allow nerfed mobs to jump
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
2016-03-07 22:54:14 +01:00
index 16444b6..9b1204c 100644
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
2016-03-01 00:09:49 +01:00
@@ -43,6 +43,7 @@ public abstract class EntityInsentient extends EntityLiving {
private boolean bC;
private Entity leashHolder;
private NBTTagCompound bE;
+ public PathfinderGoalFloat goalFloat; // Paper
public EntityInsentient(World world) {
super(world);
2016-03-07 22:54:14 +01:00
@@ -622,6 +623,12 @@ public abstract class EntityInsentient extends EntityLiving {
// Spigot Start
if ( this.fromMobSpawner )
{
2016-03-01 00:09:49 +01:00
+ // Paper start - Allow nerfed mobs to jump and float
+ if (goalFloat != null) {
+ if (goalFloat.a()) goalFloat.e();
+ this.g.b();
+ }
2016-03-01 00:09:49 +01:00
+ // Paper end
return;
}
// Spigot End
diff --git a/src/main/java/net/minecraft/server/PathfinderGoalFloat.java b/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
2016-03-01 00:09:49 +01:00
index 1a20dbf..e385148 100644
--- a/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
+++ b/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
@@ -6,6 +6,7 @@ public class PathfinderGoalFloat extends PathfinderGoal {
public PathfinderGoalFloat(EntityInsentient entityinsentient) {
this.a = entityinsentient;
2016-03-01 00:09:49 +01:00
+ entityinsentient.goalFloat = this; // Paper
this.a(4);
2016-03-01 00:09:49 +01:00
((Navigation) entityinsentient.getNavigation()).c(true);
}
--
2016-03-01 00:09:49 +01:00
2.7.2