Attempt to fix compile and other small changes

This commit is contained in:
MattBDev
2019-11-11 16:22:03 -05:00
parent 6cbbefc0de
commit 630245bb9f
8 changed files with 24 additions and 24 deletions

View File

@ -295,14 +295,13 @@ public interface World extends Extent, Keyed, IChunkCache<IChunkGet> {
}
/**
* Refresh a specific chunk with a bitMask (0 = default, 65535 = all block sections)
* Refresh a specific chunk
* Note: only 0 is guaranteed to send all tiles / entities
* Note: Only 65535 is guaranteed to send all blocks
* @param chunkX
* @param chunkZ
* @param bitMask
*/
void refreshChunk(final int X, final int Z);
void refreshChunk(final int chunkX, final int chunkZ);
@Override
IChunkGet get(int x, int z);