Paper/patches/unapplied/server/0032-Allow-nerfed-mobs-to-jump.patch

48 lines
2.4 KiB
Diff
Raw Normal View History

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
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/entity/Mob.java b/src/main/java/net/minecraft/world/entity/Mob.java
index 8892a6344b3a96a3d412528b80ce7bcf1ab30003..8395130fcc148ed1500342ead78b20a1387f23e9 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
@@ -113,6 +113,7 @@ public abstract class Mob extends LivingEntity implements Targeting {
2021-06-11 14:02:28 +02:00
private final BodyRotationControl bodyRotationControl;
protected PathNavigation navigation;
public GoalSelector goalSelector;
+ @Nullable public net.minecraft.world.entity.ai.goal.FloatGoal goalFloat; // Paper - Allow nerfed mobs to jump and float
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;
@@ -878,7 +879,15 @@ public abstract class Mob extends LivingEntity implements Targeting {
2021-06-11 14:02:28 +02:00
@Override
protected final void serverAiStep() {
++this.noActionTime;
- if (!this.aware) return; // CraftBukkit
+ // Paper start - Allow nerfed mobs to jump and float
+ if (!this.aware) {
2021-06-11 14:02:28 +02:00
+ 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
+ }
+ return;
+ }
+ // Paper end - Allow nerfed mobs to jump and float
2023-06-07 20:31:32 +02:00
this.level().getProfiler().push("sensing");
2021-06-11 14:02:28 +02:00
this.sensing.tick();
2023-06-07 20:31:32 +02:00
this.level().getProfiler().pop();
2021-06-11 14:02:28 +02:00
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
index 5fbb5d2bf8945a361babfe50f5f92fa46b9e8b5f..7eb0e0486203d9ad6ce89d17a4da96a7563088a4 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().entities.behavior.spawnerNerfedMobsShouldJump) mob.goalFloat = this; // Paper - Allow nerfed mobs to jump and float
2021-06-11 14:02:28 +02:00
this.setFlags(EnumSet.of(Goal.Flag.JUMP));
mob.getNavigation().setCanFloat(true);
}