mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
SPIGOT-5953, SPIGOT-5914: Use LinkedHashMap to keep captured block states in order
This commit is contained in:
parent
7d31adb5f7
commit
3c7143e7b4
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
+
|
||||
+ public boolean captureBlockStates = false;
|
||||
+ public boolean captureTreeGeneration = false;
|
||||
+ public Map<BlockPosition, CapturedBlockState> capturedBlockStates = new HashMap<>();
|
||||
+ public Map<BlockPosition, CapturedBlockState> capturedBlockStates = new java.util.LinkedHashMap<>();
|
||||
+ public Map<BlockPosition, TileEntity> capturedTileEntities = new HashMap<>();
|
||||
+ public List<EntityItem> captureDrops;
|
||||
+ public long ticksPerAnimalSpawns;
|
||||
|
|
Loading…
Reference in a new issue