Chunk Bug Fixes

Added chunk.setChunkModified() to other classes that were missing it. We
have several copies of setBlockDirectly() spread around that needed
updating. Also made pockets use FoR instead of glowstone. =P
This commit is contained in:
SenseiKiwi
2014-01-22 05:57:07 -04:00
parent ffa033496d
commit 8d372fadff
3 changed files with 3 additions and 1 deletions

View File

@@ -230,5 +230,6 @@ public class MazeBuilder
}
extBlockStorage.setExtBlockID(localX, y & 15, localZ, blockID);
extBlockStorage.setExtBlockMetadata(localX, y & 15, localZ, metadata);
chunk.setChunkModified();
}
}