We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed00371 commit 79bdfcfCopy full SHA for 79bdfcf
1 file changed
src/main/java/com/gregtechceu/gtceu/core/mixins/LevelMixin.java
@@ -78,10 +78,6 @@ public abstract class LevelMixin implements LevelAccessor {
78
MultiblockWorldSavedData mwsd = MultiblockWorldSavedData.getOrCreate(serverLevel);
79
Set<MultiblockState> defensiveCopy = new HashSet<>(mwsd.getControllersInChunk(chunk.getPos()));
80
for (MultiblockState structure : defensiveCopy) {
81
- if (structure.getController() == null || !structure.getController().isFormed()) {
82
- // skip for unloaded/unformed multiblocks
83
- continue;
84
- }
85
if (structure.isPosInCache(pos)) {
86
serverLevel.getServer().executeBlocking(() -> structure.onBlockStateChanged(pos, newState));
87
}
0 commit comments