You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isBlockPlaceCancelled is covered by UPDATE_SKIP_BLOCK_ENTITY_SIDEEFFECTS and the
the lack of UPDATE_NEIGHBORS / UPDATE_MOVE_BY_PISTON in revertPlace
preventPoiUpdated is not relevant anymore
Copy file name to clipboardexpand all lines: paper-server/patches/sources/net/minecraft/world/item/ItemStack.java.patch
+1-5
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
}
24
24
}
25
25
};
26
-
@@ -373,10 +_,171 @@
26
+
@@ -373,10 +_,167 @@
27
27
return InteractionResult.PASS;
28
28
} else {
29
29
Item item = this.getItem();
@@ -104,13 +104,9 @@
104
104
+ player.containerMenu.sendAllDataToRemote();
105
105
+ serverLevel.capturedTileEntities.clear(); // Paper - Allow chests to be placed with NBT data; clear out block entities as chests and such will pop loot
Copy file name to clipboardexpand all lines: paper-server/patches/sources/net/minecraft/world/level/Level.java.patch
+3-9
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@
38
38
protected final NeighborUpdater neighborUpdater;
39
39
private final List<TickingBlockEntity> pendingBlockEntityTickers = Lists.newArrayList();
40
40
private boolean tickingBlockEntities;
41
-
@@ -119,6 +_,61 @@
41
+
@@ -119,6 +_,59 @@
42
42
private final DamageSources damageSources;
43
43
private long subTickCount;
44
44
@@ -47,10 +47,8 @@
47
47
+ public boolean pvpMode;
48
48
+ public org.bukkit.generator.ChunkGenerator generator;
49
49
+
50
-
+ public boolean preventPoiUpdated = false; // CraftBukkit - SPIGOT-5710
51
50
+ public boolean captureBlockStates = false;
52
51
+ public boolean captureTreeGeneration = false;
53
-
+ public boolean isBlockPlaceCancelled = false; // Paper - prevent calling cleanup logic when undoing a block place upon a cancelled BlockPlaceEvent
54
52
+ public Map<BlockPos, org.bukkit.craftbukkit.block.CraftBlockState> capturedBlockStates = new java.util.LinkedHashMap<>(); // Paper
55
53
+ public Map<BlockPos, BlockEntity> capturedTileEntities = new java.util.LinkedHashMap<>(); // Paper - Retain block place order when capturing blockstates
56
54
+ public List<net.minecraft.world.entity.item.ItemEntity> captureDrops;
+ if (blockEntity != null && !this.level.isBlockPlaceCancelled) { // Paper - prevent calling cleanup logic when undoing a block place upon a cancelled BlockPlaceEvent
publicstaticBlockPossourceBlockOverride = null; // SPIGOT-7068: Add source block override, not the most elegant way but better than passing down a BlockPosition up to five methods deep.
0 commit comments