diff options
Diffstat (limited to 'patches/server/0311-Prevent-bees-loading-chunks-checking-hive-position.patch')
-rw-r--r-- | patches/server/0311-Prevent-bees-loading-chunks-checking-hive-position.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/server/0311-Prevent-bees-loading-chunks-checking-hive-position.patch b/patches/server/0311-Prevent-bees-loading-chunks-checking-hive-position.patch new file mode 100644 index 0000000000..9e8924d226 --- /dev/null +++ b/patches/server/0311-Prevent-bees-loading-chunks-checking-hive-position.patch @@ -0,0 +1,18 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: William Blake Galbreath <[email protected]> +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/world/entity/animal/Bee.java b/src/main/java/net/minecraft/world/entity/animal/Bee.java +index 8b0d13513656752a0b40e25c5041d41491b9eef0..5ecf8a87a31a0243c281e2a69823f5f79be69ca5 100644 +--- a/src/main/java/net/minecraft/world/entity/animal/Bee.java ++++ b/src/main/java/net/minecraft/world/entity/animal/Bee.java +@@ -499,6 +499,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal { + } else if (this.isTooFarAway(this.hivePos)) { + return false; + } else { ++ if (this.level().getChunkIfLoadedImmediately(this.hivePos.getX() >> 4, this.hivePos.getZ() >> 4) == null) return true; // Paper - just assume the hive is still there, no need to load the chunk(s) + BlockEntity tileentity = this.level().getBlockEntity(this.hivePos); + + return tileentity != null && tileentity.getType() == BlockEntityType.BEEHIVE; |