From 89b1be105e56dccf761ceb80f115ed2a44e22176 Mon Sep 17 00:00:00 2001 From: Jake Potrebic Date: Sun, 3 Oct 2021 09:54:54 -0700 Subject: [PATCH] Don't count named piglins and hoglins towards mob cap (#6452) --- ...-piglins-and-hoglins-towards-mob-cap.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 patches/server/Dont-count-named-piglins-and-hoglins-towards-mob-cap.patch diff --git a/patches/server/Dont-count-named-piglins-and-hoglins-towards-mob-cap.patch b/patches/server/Dont-count-named-piglins-and-hoglins-towards-mob-cap.patch new file mode 100644 index 0000000000..f1f8ad3406 --- /dev/null +++ b/patches/server/Dont-count-named-piglins-and-hoglins-towards-mob-cap.patch @@ -0,0 +1,19 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Jake Potrebic +Date: Fri, 20 Aug 2021 18:36:02 -0700 +Subject: [PATCH] Dont count named piglins and hoglins towards mob cap + + +diff --git a/src/main/java/net/minecraft/world/level/NaturalSpawner.java b/src/main/java/net/minecraft/world/level/NaturalSpawner.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/net/minecraft/world/level/NaturalSpawner.java ++++ b/src/main/java/net/minecraft/world/level/NaturalSpawner.java +@@ -0,0 +0,0 @@ public final class NaturalSpawner { + Mob entityinsentient = (Mob) entity; + + // CraftBukkit - Split out persistent check, don't apply it to special persistent mobs +- if (entityinsentient.removeWhenFarAway(0) && entityinsentient.isPersistenceRequired()) { ++ if ((entityinsentient instanceof net.minecraft.world.entity.monster.piglin.Piglin || entityinsentient instanceof net.minecraft.world.entity.monster.hoglin.Hoglin || entityinsentient.removeWhenFarAway(0)) && entityinsentient.isPersistenceRequired()) { // Paper - what a jank fix, CBs like totally tried to change what removeWhenFarAway does, that method isnt even called here in vanilla, idk wtf is going on + continue; + } + }