mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
SPIGOT-5953, SPIGOT-5914: Use LinkedHashMap to keep captured block states in order
By: Brokkonaut <hannos17@gmx.de>
This commit is contained in:
parent
b0f809f617
commit
ca123b13ab
@ -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 New Issue
Block a user