mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-28 16:16:47 +01:00
Fixed a bug where the list of edited blocks for the lowest quarter of a chunk were not loaded.
This commit is contained in:
parent
534a165c45
commit
e207d9829d
@ -26,7 +26,7 @@ public class HashChunkletManager implements ChunkletManager {
|
||||
File czDir = new File(cxDir, "" + cz);
|
||||
if(!czDir.exists()) return;
|
||||
|
||||
for(int y = 1; y <= 4; y++) {
|
||||
for(int y = 0; y <= 4; y++) {
|
||||
File yFile = new File(czDir, "" + y);
|
||||
if(!yFile.exists()) {
|
||||
continue;
|
||||
@ -43,7 +43,7 @@ public class HashChunkletManager implements ChunkletManager {
|
||||
public void chunkUnloaded(int cx, int cz, World world) {
|
||||
File dataDir = new File(world.getWorldFolder(), "mcmmo_data");
|
||||
|
||||
for(int y = 1; y <= 4; y++) {
|
||||
for(int y = 0; y <= 4; y++) {
|
||||
if(store.containsKey(world.getName() + "," + cx + "," + cz + "," + y)) {
|
||||
File cxDir = new File(dataDir, "" + cx);
|
||||
if(!cxDir.exists()) cxDir.mkdir();
|
||||
|
Loading…
Reference in New Issue
Block a user