Don't skip processing if blocks are there (...).

This commit is contained in:
asofold 2017-02-01 17:53:23 +01:00
parent 72b454bbab
commit a4596ede1a

View File

@ -412,7 +412,7 @@ public class BlockChangeTracker {
processBlocks.add(block);
}
}
if (world == null || !processBlocks.isEmpty()) {
if (world == null || processBlocks.isEmpty()) {
processBlocks.clear(); // In case the world is null (unlikely).
return;
}