1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-04-14 15:46:23 +02:00

Fixed parameterization issue.

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

@ -167,8 +167,8 @@ public class HashChunkManager implements ChunkManager {
if(in != null) {
store.put(world.getName() + "," + cx + "," + cz, in);
List mobs = in.getSpawnedMobs();
List pets = in.getSpawnedPets();
List<UUID> mobs = in.getSpawnedMobs();
List<UUID> pets = in.getSpawnedPets();
if(mobs.isEmpty() && pets.isEmpty())
return;