This was a bad idea

This commit is contained in:
NuclearW 2012-05-18 03:12:40 -04:00
parent c1ecd74644
commit d0bb7b075e

View File

@ -36,14 +36,6 @@ public class HashChunkletManager implements ChunkletManager {
}
public void chunkUnloaded(int cx, int cz, World world) {
boolean found = false;
for(String key : store.keySet()) {
if(key.startsWith(world.getName() + "," + cx + "," + cz)) found = true;
}
if(!found) return;
File dataDir = new File(world.getWorldFolder(), "mcmmo_data");
File cxDir = new File(dataDir, "" + cx);
if(!cxDir.exists()) cxDir.mkdir();