aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch')
-rw-r--r--patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch b/patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch
deleted file mode 100644
index 9de684873f..0000000000
--- a/patches/server/0433-Retain-block-place-order-when-capturing-blockstates.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Spottedleaf <[email protected]>
-Date: Fri, 7 Aug 2020 04:27:56 -0700
-Subject: [PATCH] Retain block place order when capturing blockstates
-
-Fixes twisted vines not connecting properly when grown via
-bonemeal by a player.
-
-In general, look at making this logic more robust (i.e properly handling
-cases where a captured entry is overriden) - but for now this will do.
-
-diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
-index 895c263570acf0f8ac2e8d680a6187bc189a205e..88b09635590958b4edf992490dd30616c35d4d6d 100644
---- a/src/main/java/net/minecraft/world/level/Level.java
-+++ b/src/main/java/net/minecraft/world/level/Level.java
-@@ -151,7 +151,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
- public boolean captureBlockStates = false;
- public boolean captureTreeGeneration = false;
- public Map<BlockPos, org.bukkit.craftbukkit.block.CraftBlockState> capturedBlockStates = new java.util.LinkedHashMap<>(); // Paper
-- public Map<BlockPos, BlockEntity> capturedTileEntities = new HashMap<>();
-+ public Map<BlockPos, BlockEntity> capturedTileEntities = new java.util.LinkedHashMap<>(); // Paper - Retain block place order when capturing blockstates
- public List<ItemEntity> captureDrops;
- public final it.unimi.dsi.fastutil.objects.Object2LongOpenHashMap<SpawnCategory> ticksPerSpawnCategory = new it.unimi.dsi.fastutil.objects.Object2LongOpenHashMap<>();
- public boolean populating;