Browse Source

This was a bad idea

NuclearW 13 years ago
parent
commit
d0bb7b075e

+ 0 - 8
src/main/java/com/gmail/nossr50/util/blockmeta/HashChunkletManager.java

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