mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
88080d33a7
Following this comment on PaperLib, https://github.com/PaperMC/PaperLib/pull/2#discussion_r222761017 I've made non-snapshot TE's not update when they receive the update call. They still do the rest of the update, just not the applying of the TE data. This is to still allow forced physics updates etc. Also in the case of Jukeboxes, updating the properties
24 lines
No EOL
1 KiB
Diff
24 lines
No EOL
1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Matthew Miller <mnmiller1@me.com>
|
|
Date: Fri, 5 Oct 2018 15:46:46 +1000
|
|
Subject: [PATCH] Don't update snapshot blockstates
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java
|
|
index d4d9c5fc..f5c6dbd8 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlockEntityState.java
|
|
@@ -0,0 +0,0 @@ public class CraftBlockEntityState<T extends TileEntity> extends CraftBlockState
|
|
TileEntity tile = getTileEntityFromWorld();
|
|
|
|
if (isApplicable(tile)) {
|
|
- applyTo(tileEntityClass.cast(tile));
|
|
+ // Paper start
|
|
+ if (!snapshotDisabled) {
|
|
+ applyTo(tileEntityClass.cast(tile));
|
|
+ }
|
|
+ // Paper end
|
|
tile.update();
|
|
}
|
|
}
|
|
--
|