aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2023-11-04 14:11:55 -0700
committerGitHub <[email protected]>2023-11-04 14:11:55 -0700
commit0cdce89d595a2c1c097c9e2a5ff96687977b3b25 (patch)
treede63d6aa8112811f93b5d6afebbb069b9980870f /patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch
parent15a0de2eefb70ea8162cbb31056920adf80265fa (diff)
downloadPaper-0cdce89d595a2c1c097c9e2a5ff96687977b3b25.tar.gz
Paper-0cdce89d595a2c1c097c9e2a5ff96687977b3b25.zip
Fix a bunch of stuff with player spawn locations (#9887)
If a playerdata doesn't contain a valid, loaded world, reset to the main world spawn point
Diffstat (limited to 'patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch')
-rw-r--r--patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch b/patches/server/0793-Prevent-tile-entity-copies-loading-chunks.patch
new file mode 100644
index 0000000000..e1d3f11682
--- /dev/null
+++ b/patches/server/0793-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 fce18ec126c3019249d2630dce1d8efa9d8f326b..1a38e20ed90e2bb110a7ffbd9195b4b01650b17f 100644
+--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+@@ -3187,7 +3187,12 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
+ BlockPos blockposition = BlockEntity.getPosFromTag(nbttagcompound);
+
+ if (this.player.level().isLoaded(blockposition)) {
+- BlockEntity tileentity = this.player.level().getBlockEntity(blockposition);
++ // Paper start
++ 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
+
+ if (tileentity != null) {
+ tileentity.saveToItem(itemstack);