aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch')
-rw-r--r--patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch b/patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch
new file mode 100644
index 0000000000..d690eb7288
--- /dev/null
+++ b/patches/server/0684-Prevent-tile-entity-copies-loading-chunks.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <[email protected]>
+Date: Wed, 13 Apr 2022 08:25:42 +0100
+Subject: [PATCH] Prevent tile entity copies loading chunks
+
+
+diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+index 9656e15aa15735e9bd6ac4e2ad7aa8aa66140b9a..bc8f9bd50de3894e6262e13ed55252c98f22ed8a 100644
+--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+@@ -3245,7 +3245,12 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
+ BlockPos blockposition = BlockEntity.getPosFromTag(customdata.getUnsafe());
+
+ if (this.player.level().isLoaded(blockposition)) {
+- BlockEntity tileentity = this.player.level().getBlockEntity(blockposition);
++ // Paper start - Prevent tile entity copies loading chunks
++ BlockEntity tileentity = null;
++ if (this.player.distanceToSqr(blockposition.getX(), blockposition.getY(), blockposition.getZ()) < 32 * 32 && this.player.serverLevel().isLoadedAndInBounds(blockposition)) {
++ tileentity = this.player.level().getBlockEntity(blockposition);
++ }
++ // Paper end - Prevent tile entity copies loading chunks
+
+ if (tileentity != null) {
+ tileentity.saveToItem(itemstack, this.player.level().registryAccess());