Don't fail when enabling standard mode for an extent without a world.

This commit is contained in:
Matthew Miller 2020-05-30 23:04:54 +10:00
parent 6b918e671e
commit 68f2f73367

View File

@ -301,7 +301,9 @@ boolean commitRequired() {
* chunk batching}.
*/
public void enableStandardMode() {
setBatchingChunks(true);
if (chunkBatchingExtent != null) {
setBatchingChunks(true);
}
}
/**