mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-25 00:25:28 +02:00
Fixed parameterization issue.
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user