Closed quentin452 closed 1 year ago
fixed by disabling disableBlockingChunkUpdates in archaicfix
@makamys Any idea why threaded chunk updates would cause this? I'm not sure.
Mekanism is probably doing something weird to render multiple blocks inside the same block. I'm going to revisit the issues of the occlusion tweak and the threaded chunk updating in the near future, I'll have a proper look then.
It happened because ForgeMultiPart nests block models. The torch block gets drawn as a "child" of the FMP block. Since it's a vanilla block, its rendering got skipped on the main thread. But of course, the render thread never rendered it either since it's part of a modded block.
To fix this, I made child models (which should only exist as parts of modded blocks) always get rendered on the main thread.
Archaicfix enabled
Archaicfix disabled