aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch')
-rw-r--r--patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch b/patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch
new file mode 100644
index 0000000000..306f756bb9
--- /dev/null
+++ b/patches/server/0817-Don-t-load-chunks-for-supporting-block-checks.patch
@@ -0,0 +1,19 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <[email protected]>
+Date: Wed, 5 Jul 2023 23:11:53 +0100
+Subject: [PATCH] Don't load chunks for supporting block checks
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index 777b6a5d63138c9332c1d32f1df6d0cc2e3b2844..f2c36ab6d4124bee1ce4c534481117d655343a10 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -1242,7 +1242,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
+ }
+
+ protected BlockPos getOnPos(float offset) {
+- if (this.mainSupportingBlockPos.isPresent()) {
++ if (this.mainSupportingBlockPos.isPresent() && this.level().getChunkIfLoadedImmediately(this.mainSupportingBlockPos.get()) != null) { // Paper - ensure no loads
+ BlockPos blockposition = (BlockPos) this.mainSupportingBlockPos.get();
+
+ if (offset <= 1.0E-5F) {