mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 14:33:09 +01:00
Prevent bees loading chunks checking hive position (#2828)
This commit is contained in:
parent
5ed8ce6bff
commit
fa67beb728
1 changed files with 19 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
||||||
|
Date: Sun, 5 Jan 2020 17:24:34 -0600
|
||||||
|
Subject: [PATCH] Prevent bees loading chunks checking hive position
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/EntityBee.java b/src/main/java/net/minecraft/server/EntityBee.java
|
||||||
|
index fb1c0a96..829aab7f 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EntityBee.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EntityBee.java
|
||||||
|
@@ -0,0 +0,0 @@ public class EntityBee extends EntityAnimal implements EntityBird {
|
||||||
|
if (!this.hasHivePos()) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
+ if (world.getChunkIfLoadedImmediately(hivePos.getX() >> 4, hivePos.getZ() >> 4) == null) return true; // Paper - just assume the hive is still there, no need to load the chunk(s)
|
||||||
|
TileEntity tileentity = this.world.getTileEntity(this.hivePos);
|
||||||
|
|
||||||
|
return tileentity != null && tileentity.getTileType() == TileEntityTypes.BEEHIVE;
|
||||||
|
--
|
Loading…
Reference in a new issue