20 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
| 
								 | 
							
								From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
							 | 
						||
| 
								 | 
							
								From: Jake Potrebic <jake.m.potrebic@gmail.com>
							 | 
						||
| 
								 | 
							
								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;
							 | 
						||
| 
								 | 
							
								                 }
							 | 
						||
| 
								 | 
							
								             }
							 |