diff options
author | Owen1212055 <[email protected]> | 2024-06-15 22:04:02 -0400 |
---|---|---|
committer | Owen1212055 <[email protected]> | 2024-06-15 22:04:02 -0400 |
commit | 7240d9d81c2e0fd2a2bce4dbe4543f0016b3065e (patch) | |
tree | 51ddac333b55db5584e99298c9aa0086a9246a0a | |
parent | 5a5412ca70806523529c74d424623a22e67ceafa (diff) | |
download | Paper-7240d9d81c2e0fd2a2bce4dbe4543f0016b3065e.tar.gz Paper-7240d9d81c2e0fd2a2bce4dbe4543f0016b3065e.zip |
Restore functionality to sand dupe setting
-rw-r--r-- | patches/server/1017-Configurable-Sand-Duping.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/1017-Configurable-Sand-Duping.patch b/patches/server/1017-Configurable-Sand-Duping.patch new file mode 100644 index 0000000000..cbc52697db --- /dev/null +++ b/patches/server/1017-Configurable-Sand-Duping.patch @@ -0,0 +1,19 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Owen1212055 <[email protected]> +Date: Sat, 15 Jun 2024 22:01:39 -0400 +Subject: [PATCH] Configurable Sand Duping + + +diff --git a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java +index caf9273cfafbbaaf8dc95498927383e608773665..b83be9bbb9f348da83c0fd1ecc7f65c8a58b45b9 100644 +--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java ++++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java +@@ -419,7 +419,7 @@ public class FallingBlockEntity extends Entity { + boolean flag = (resourcekey1 == Level.END || resourcekey == Level.END) && resourcekey1 != resourcekey; + Entity entity = super.changeDimension(teleportTarget); + +- this.forceTickAfterTeleportToDuplicate = entity != null && flag; ++ this.forceTickAfterTeleportToDuplicate = entity != null && flag && io.papermc.paper.configuration.GlobalConfiguration.get().unsupportedSettings.allowUnsafeEndPortalTeleportation; // Paper + return entity; + } + } |