aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0962-Don-t-load-chunks-for-supporting-block-checks.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0962-Don-t-load-chunks-for-supporting-block-checks.patch')
-rw-r--r--patches/server/0962-Don-t-load-chunks-for-supporting-block-checks.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0962-Don-t-load-chunks-for-supporting-block-checks.patch b/patches/server/0962-Don-t-load-chunks-for-supporting-block-checks.patch
new file mode 100644
index 0000000000..21461515af
--- /dev/null
+++ b/patches/server/0962-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 f37790f7f461da9ecdbd1e83d7ac7832bc5c5eda..1188fafa153992c9f2d23d22f1faaed3e2c4a1db 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -1356,7 +1356,7 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
+ }
+
+ 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) {