diff options
Diffstat (limited to 'patches/server/0967-Configurable-Sand-Duping.patch')
-rw-r--r-- | patches/server/0967-Configurable-Sand-Duping.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0967-Configurable-Sand-Duping.patch b/patches/server/0967-Configurable-Sand-Duping.patch new file mode 100644 index 0000000000..a6f10ad4f7 --- /dev/null +++ b/patches/server/0967-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 692d78bff5f7f01c8545e0e1785953ccc0f00e2d..410c4e4a42640ebe8a9c233eb2064aad76e45a27 100644 +--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java ++++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java +@@ -430,7 +430,7 @@ public class FallingBlockEntity extends Entity { + boolean flag = (resourcekey1 == Level.END || resourcekey == Level.END) && resourcekey1 != resourcekey; + Entity entity = super.teleport(teleportTarget); + +- this.forceTickAfterTeleportToDuplicate = entity != null && flag; ++ this.forceTickAfterTeleportToDuplicate = entity != null && flag && io.papermc.paper.configuration.GlobalConfiguration.get().unsupportedSettings.allowUnsafeEndPortalTeleportation; // Paper + return entity; + } + } |