diff --git a/src/main/java/com/ldtteam/common/fakelevel/FakeChunk.java b/src/main/java/com/ldtteam/common/fakelevel/FakeChunk.java index 57d958a..25f1ca5 100644 --- a/src/main/java/com/ldtteam/common/fakelevel/FakeChunk.java +++ b/src/main/java/com/ldtteam/common/fakelevel/FakeChunk.java @@ -223,7 +223,12 @@ public boolean isYSpaceEmpty(int p_62075_, int p_62076_) public LevelChunkSection[] getSections() { // don't cache them - return new LevelChunkSection[0]; + final FakeLevelChunkSection[] sections = new FakeLevelChunkSection[fakeLevel.getSectionsCount()]; + for (int i = 0; i < sections.length; i++) + { + sections[i] = new FakeLevelChunkSection(this, i); + } + return sections; } @Override