Fixed parameterization issue.

This commit is contained in:
gmcferrin 2013-01-08 10:48:30 -05:00
parent 753652dcf9
commit 1a2dfb9b19

View File

@ -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;