2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 1 Mar 2016 13:24:16 -0600
|
|
|
|
Subject: [PATCH] Allow nerfed mobs to jump and take water damage
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
index 5896b4e4646d722db5622a424fa26f42d3f8d9ff..0a6e98ca5534430540044a32c280e5680ac9a28f 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
@@ -122,4 +122,9 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
fishingMaxTicks = getInt("fishing-time-range.MaximumTicks", 600);
|
|
|
|
log("Fishing time ranges are between " + fishingMinTicks +" and " + fishingMaxTicks + " ticks");
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean nerfedMobsShouldJump;
|
|
|
|
+ private void nerfedMobsShouldJump() {
|
|
|
|
+ nerfedMobsShouldJump = getBoolean("spawner-nerfed-mobs-should-jump", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
2022-01-23 01:59:56 +01:00
|
|
|
index 68ccbc193ff6682f505928dc0a29ee990349d299..3321df3bcc0b92277dc18b7f6efa42393e657a52 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
2022-01-23 01:59:56 +01:00
|
|
|
@@ -1265,6 +1265,7 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource, i
|
2021-06-11 14:02:28 +02:00
|
|
|
return this.isInWater() || this.isInRain();
|
|
|
|
}
|
|
|
|
|
2021-06-17 21:52:26 +02:00
|
|
|
+ @Deprecated public final boolean isInWaterOrRainOrBubble() { return isInWaterRainOrBubble(); } // Paper - OBFHELPER
|
2021-06-11 14:02:28 +02:00
|
|
|
public boolean isInWaterRainOrBubble() {
|
|
|
|
return this.isInWater() || this.isInRain() || this.isInBubbleColumn();
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Mob.java b/src/main/java/net/minecraft/world/entity/Mob.java
|
2022-01-23 01:59:56 +01:00
|
|
|
index 31f98763da600c34246d722cb92dda4442a3f046..1703bc12cd2c04fb34ebe025f305dc7fb2de1864 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Mob.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Mob.java
|
2021-11-23 12:27:39 +01:00
|
|
|
@@ -105,6 +105,7 @@ public abstract class Mob extends LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
private final BodyRotationControl bodyRotationControl;
|
|
|
|
protected PathNavigation navigation;
|
|
|
|
public GoalSelector goalSelector;
|
2021-06-12 00:37:16 +02:00
|
|
|
+ @Nullable public net.minecraft.world.entity.ai.goal.FloatGoal goalFloat; // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
public GoalSelector targetSelector;
|
2021-11-23 12:27:39 +01:00
|
|
|
@Nullable
|
2021-06-11 14:02:28 +02:00
|
|
|
private LivingEntity target;
|
2021-11-23 12:27:39 +01:00
|
|
|
@@ -802,7 +803,17 @@ public abstract class Mob extends LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
|
|
|
protected final void serverAiStep() {
|
|
|
|
++this.noActionTime;
|
|
|
|
- if (!this.aware) return; // CraftBukkit
|
|
|
|
+ if (!this.aware) { // Paper start - Allow nerfed mobs to jump, float and take water damage
|
|
|
|
+ if (goalFloat != null) {
|
2021-06-17 23:39:36 +02:00
|
|
|
+ if (goalFloat.canUse()) goalFloat.tick();
|
2021-06-16 19:48:25 +02:00
|
|
|
+ this.getJumpControl().tick();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
2022-01-01 22:56:41 +01:00
|
|
|
+ if (this.isSensitiveToWater() && isInWaterRainOrBubble()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ hurt(DamageSource.DROWN, 1.0F);
|
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
this.level.getProfiler().push("sensing");
|
|
|
|
this.sensing.tick();
|
|
|
|
this.level.getProfiler().pop();
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/goal/FloatGoal.java b/src/main/java/net/minecraft/world/entity/ai/goal/FloatGoal.java
|
2021-11-23 12:27:39 +01:00
|
|
|
index 01950951ea06e43bedeeede489a112e577617829..0e86eb2595cf9fbf24f789e0e9b4f05929d3164c 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/goal/FloatGoal.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/goal/FloatGoal.java
|
2021-06-17 23:39:36 +02:00
|
|
|
@@ -9,6 +9,7 @@ public class FloatGoal extends Goal {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
public FloatGoal(Mob mob) {
|
|
|
|
this.mob = mob;
|
|
|
|
+ if (mob.getCommandSenderWorld().paperConfig.nerfedMobsShouldJump) mob.goalFloat = this; // Paper
|
|
|
|
this.setFlags(EnumSet.of(Goal.Flag.JUMP));
|
|
|
|
mob.getNavigation().setCanFloat(true);
|
|
|
|
}
|