Fix NPE by checking if null before calling on it.

This commit is contained in:
CocoTheOwner 2021-07-20 22:04:21 +02:00
parent 0ae7b9c120
commit 3ba3e5cf76

View File

@ -132,7 +132,7 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
}
public void tick() {
if (isClosed()) {
if (getComposite() == null || isClosed()) {
return;
}