Added #flush in comment

This commit is contained in:
Felix Cravic 2020-12-10 00:08:35 +01:00
parent 654a68092a
commit 30a7843018
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import java.util.concurrent.atomic.AtomicInteger;
/** /**
* Used when the blocks you want to place need to be divided in multiple chunks, * Used when the blocks you want to place need to be divided in multiple chunks,
* use a {@link ChunkBatch} instead otherwise. * use a {@link ChunkBatch} instead otherwise.
* Can be created using {@link Instance#createBlockBatch()}. * Can be created using {@link Instance#createBlockBatch()}, and executed with {@link #flush(Runnable)}.
* *
* @see InstanceBatch * @see InstanceBatch
*/ */

View File

@ -20,7 +20,7 @@ import java.util.List;
/** /**
* Used when all the blocks you want to place can be contained within only one {@link Chunk}, * Used when all the blocks you want to place can be contained within only one {@link Chunk},
* use a {@link BlockBatch} instead otherwise. * use a {@link BlockBatch} instead otherwise.
* Can be created using {@link Instance#createChunkBatch(Chunk)}. * Can be created using {@link Instance#createChunkBatch(Chunk)}, and executed with {@link #flush(ChunkCallback)}.
* <p> * <p>
* Uses chunk coordinate (0-15) instead of world's. * Uses chunk coordinate (0-15) instead of world's.
* *