2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-02-09 05:19:54 +01:00
|
|
|
Subject: [PATCH] Allow nerfed mobs to jump and take water damage
|
2014-06-29 20:34:16 +02:00
|
|
|
|
|
|
|
|
2016-03-19 03:10:20 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-05-06 11:48:49 +02:00
|
|
|
index 7d9976ce6bf86e6fdfd0c7770104cee0db363a6d..6d6a68cb1b952da8308ac9ce5b54694bc9ba0e30 100644
|
2016-03-19 03:10:20 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-10-27 00:55:58 +02:00
|
|
|
@@ -92,4 +92,9 @@ public class PaperWorldConfig {
|
2016-11-17 03:23:38 +01:00
|
|
|
fishingMaxTicks = getInt("fishing-time-range.MaximumTicks", 600);
|
2016-03-19 03:10:20 +01:00
|
|
|
log("Fishing time ranges are between " + fishingMinTicks +" and " + fishingMaxTicks + " ticks");
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean nerfedMobsShouldJump;
|
|
|
|
+ private void nerfedMobsShouldJump() {
|
|
|
|
+ nerfedMobsShouldJump = getBoolean("spawner-nerfed-mobs-should-jump", false);
|
|
|
|
+ }
|
|
|
|
}
|
2016-12-21 04:57:07 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/ControllerJump.java b/src/main/java/net/minecraft/server/ControllerJump.java
|
2020-05-06 11:48:49 +02:00
|
|
|
index 2e869004c8c6b8bfbb002fb4eda04519d50390c8..8a6856e0fd7b9b515d98f45aaabefbc30d532596 100644
|
2016-12-21 04:57:07 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ControllerJump.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ControllerJump.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -13,6 +13,7 @@ public class ControllerJump {
|
2016-12-21 04:57:07 +01:00
|
|
|
this.a = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public void jumpIfSet() { this.b(); } // Paper - OBFHELPER
|
|
|
|
public void b() {
|
2019-04-24 03:00:24 +02:00
|
|
|
this.b.setJumping(this.a);
|
2016-12-21 04:57:07 +01:00
|
|
|
this.a = false;
|
2020-02-09 05:19:54 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2020-06-26 03:58:00 +02:00
|
|
|
index 81f2c91f9e27e2ad2855b64a7849efa18505e952..f8a85f1c96729ad97aa5f21ac0468c92f243f079 100644
|
2020-02-09 05:19:54 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2020-06-26 03:58:00 +02:00
|
|
|
@@ -1024,6 +1024,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2020-02-09 05:19:54 +01:00
|
|
|
return this.isInWater() || this.isInRain();
|
|
|
|
}
|
|
|
|
|
2020-06-25 11:27:25 +02:00
|
|
|
+ public boolean isInWaterOrRainOrBubble() { return aC(); } // Paper - OBFHELPER
|
|
|
|
public boolean aC() {
|
|
|
|
return this.isInWater() || this.isInRain() || this.k();
|
2020-02-09 05:19:54 +01:00
|
|
|
}
|
2014-06-29 20:34:16 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2020-06-25 11:27:25 +02:00
|
|
|
index e5455d99e3f5607a5754e5760d42853a62dddb82..b9732287ba16d90bed33929348a223f6dbdbfb45 100644
|
2014-06-29 20:34:16 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2020-06-25 11:27:25 +02:00
|
|
|
@@ -33,6 +33,7 @@ public abstract class EntityInsentient extends EntityLiving {
|
2019-04-24 03:00:24 +02:00
|
|
|
private final EntityAIBodyControl c;
|
2018-07-15 03:53:17 +02:00
|
|
|
protected NavigationAbstract navigation;
|
|
|
|
public PathfinderGoalSelector goalSelector;
|
2017-06-11 19:03:07 +02:00
|
|
|
+ @Nullable public PathfinderGoalFloat goalFloat; // Paper
|
2018-07-15 03:53:17 +02:00
|
|
|
public PathfinderGoalSelector targetSelector;
|
|
|
|
private EntityLiving goalTarget;
|
2020-06-25 11:27:25 +02:00
|
|
|
private final EntitySenses bv;
|
|
|
|
@@ -719,7 +720,17 @@ public abstract class EntityInsentient extends EntityLiving {
|
2020-02-21 18:52:20 +01:00
|
|
|
@Override
|
|
|
|
protected final void doTick() {
|
|
|
|
++this.ticksFarFromPlayer;
|
|
|
|
- if (!this.aware) return; // CraftBukkit
|
|
|
|
+ if (!this.aware) { // Paper start - Allow nerfed mobs to jump, float and take water damage
|
2015-07-14 19:51:38 +02:00
|
|
|
+ if (goalFloat != null) {
|
2016-12-21 04:57:07 +01:00
|
|
|
+ if (goalFloat.validConditions()) goalFloat.update();
|
|
|
|
+ this.getControllerJump().jumpIfSet();
|
2015-07-14 19:51:38 +02:00
|
|
|
+ }
|
2020-02-09 05:19:54 +01:00
|
|
|
+ if ((this instanceof EntityBlaze || this instanceof EntityEnderman) && isInWaterOrRainOrBubble()) {
|
|
|
|
+ damageEntity(DamageSource.DROWN, 1.0F);
|
|
|
|
+ }
|
2020-02-21 18:52:20 +01:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
this.world.getMethodProfiler().enter("sensing");
|
2020-06-25 11:27:25 +02:00
|
|
|
this.bv.a();
|
2020-02-21 18:52:20 +01:00
|
|
|
this.world.getMethodProfiler().exit();
|
2015-07-14 19:51:38 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderGoalFloat.java b/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
|
2020-06-25 11:27:25 +02:00
|
|
|
index d0281a98a318376922b5bd8fcad7ba7db2012b54..e2b23978e347fe63e8bc900b72da6cbaf27bf652 100644
|
2015-07-14 19:51:38 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderGoalFloat.java
|
2020-06-25 11:27:25 +02:00
|
|
|
@@ -8,15 +8,18 @@ public class PathfinderGoalFloat extends PathfinderGoal {
|
2015-07-14 19:51:38 +02:00
|
|
|
|
|
|
|
public PathfinderGoalFloat(EntityInsentient entityinsentient) {
|
|
|
|
this.a = entityinsentient;
|
2017-10-31 16:13:55 +01:00
|
|
|
+ if (entityinsentient.getWorld().paperConfig.nerfedMobsShouldJump) entityinsentient.goalFloat = this; // Paper
|
2019-04-24 03:00:24 +02:00
|
|
|
this.a(EnumSet.of(PathfinderGoal.Type.JUMP));
|
2018-07-22 07:27:46 +02:00
|
|
|
entityinsentient.getNavigation().d(true);
|
2015-07-14 19:51:38 +02:00
|
|
|
}
|
2019-05-06 02:57:14 +02:00
|
|
|
|
|
|
|
+ public final boolean validConditions() { return this.a(); } // Paper - OBFHELPER
|
|
|
|
@Override
|
|
|
|
public boolean a() {
|
2020-06-25 11:27:25 +02:00
|
|
|
return this.a.isInWater() && this.a.b((Tag) TagsFluid.WATER) > this.a.cw() || this.a.aN();
|
2016-12-21 04:57:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public void update() { this.e(); } // Paper - OBFHELPER
|
2019-04-24 03:00:24 +02:00
|
|
|
@Override
|
2016-12-21 04:57:07 +01:00
|
|
|
public void e() {
|
|
|
|
if (this.a.getRandom().nextFloat() < 0.8F) {
|