mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-27 11:09:06 +00:00
Fix NPE by checking if null before calling on it.
This commit is contained in:
@@ -132,7 +132,7 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
|
||||
}
|
||||
|
||||
public void tick() {
|
||||
if (isClosed()) {
|
||||
if (getComposite() == null || isClosed()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user