mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
Fixed parameterization issue.
This commit is contained in:
parent
753652dcf9
commit
1a2dfb9b19
@ -167,8 +167,8 @@ public class HashChunkManager implements ChunkManager {
|
|||||||
if(in != null) {
|
if(in != null) {
|
||||||
store.put(world.getName() + "," + cx + "," + cz, in);
|
store.put(world.getName() + "," + cx + "," + cz, in);
|
||||||
|
|
||||||
List mobs = in.getSpawnedMobs();
|
List<UUID> mobs = in.getSpawnedMobs();
|
||||||
List pets = in.getSpawnedPets();
|
List<UUID> pets = in.getSpawnedPets();
|
||||||
|
|
||||||
if(mobs.isEmpty() && pets.isEmpty())
|
if(mobs.isEmpty() && pets.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user