Paper/patches/server/0343-Do-not-allow-bees-to-load-chunks-for-beehives.patch

43 lines
2.5 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: chickeneer <emcchickeneer@gmail.com>
Date: Tue, 17 Mar 2020 14:18:50 -0500
Subject: [PATCH] Do not allow bees to load chunks for beehives
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 06e990b6957a4ef48c8778bbd175d3afddf52ca3..07ecc038a1000581335b8d18c094298f2f3b100f 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/entity/animal/Bee.java
+++ b/src/main/java/net/minecraft/world/entity/animal/Bee.java
2023-12-05 23:55:31 +01:00
@@ -420,6 +420,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal {
2021-06-11 14:02:28 +02:00
if (this.hivePos == null) {
return false;
} else {
+ if (!this.level().isLoadedAndInBounds(this.hivePos)) return false; // Paper - Do not allow bees to load chunks for beehives
2023-06-08 00:41:25 +02:00
BlockEntity tileentity = this.level().getBlockEntity(this.hivePos);
2021-06-11 14:02:28 +02:00
return tileentity instanceof BeehiveBlockEntity && ((BeehiveBlockEntity) tileentity).isFireNearby();
2023-12-05 23:55:31 +01:00
@@ -453,6 +454,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal {
2021-06-11 14:02:28 +02:00
}
private boolean doesHiveHaveSpace(BlockPos pos) {
+ if (!this.level().isLoadedAndInBounds(pos)) return false; // Paper - Do not allow bees to load chunks for beehives
2023-06-08 00:41:25 +02:00
BlockEntity tileentity = this.level().getBlockEntity(pos);
2021-06-11 14:02:28 +02:00
return tileentity instanceof BeehiveBlockEntity ? !((BeehiveBlockEntity) tileentity).isFull() : false;
2023-12-05 23:55:31 +01:00
@@ -929,6 +931,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal {
2021-06-11 14:02:28 +02:00
@Override
public boolean canBeeUse() {
2022-03-01 06:43:03 +01:00
if (Bee.this.hasHive() && Bee.this.wantsToEnterHive() && Bee.this.hivePos.closerToCenterThan(Bee.this.position(), 2.0D)) {
+ if (!Bee.this.level().isLoadedAndInBounds(Bee.this.hivePos)) return false; // Paper - Do not allow bees to load chunks for beehives
2023-06-08 00:41:25 +02:00
BlockEntity tileentity = Bee.this.level().getBlockEntity(Bee.this.hivePos);
2021-06-11 14:02:28 +02:00
if (tileentity instanceof BeehiveBlockEntity) {
2023-12-05 23:55:31 +01:00
@@ -952,6 +955,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal {
2021-06-11 14:02:28 +02:00
@Override
public void start() {
+ if (!Bee.this.level().isLoadedAndInBounds(Bee.this.hivePos)) return; // Paper - Do not allow bees to load chunks for beehives
2023-06-08 00:41:25 +02:00
BlockEntity tileentity = Bee.this.level().getBlockEntity(Bee.this.hivePos);
2021-06-11 14:02:28 +02:00
if (tileentity instanceof BeehiveBlockEntity) {