mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 00:30:07 +01:00
Fixed some parameterization issues.
This commit is contained in:
parent
aeaad41c45
commit
1ff1704697
@ -22,8 +22,8 @@ public class PrimitiveChunkStore implements ChunkStore {
|
||||
private int cx;
|
||||
private int cz;
|
||||
private UUID worldUid;
|
||||
private List spawnedMobs = new ArrayList<UUID>();
|
||||
private List spawnedPets = new ArrayList<UUID>();
|
||||
private List<UUID> spawnedMobs = new ArrayList<UUID>();
|
||||
private List<UUID> spawnedPets = new ArrayList<UUID>();
|
||||
transient private int worldHeight;
|
||||
transient private int xBitShifts;
|
||||
transient private int zBitShifts;
|
||||
@ -214,6 +214,7 @@ public class PrimitiveChunkStore implements ChunkStore {
|
||||
}
|
||||
|
||||
if(fileVersionNumber >= 6) {
|
||||
//What do we want to do about this? These casts are unchecked.
|
||||
spawnedMobs = (ArrayList<UUID>) in.readObject();
|
||||
spawnedPets = (ArrayList<UUID>) in.readObject();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user