fix: apparati not rendering in some chunk segments

This commit is contained in:
Timo Ley 2023-05-19 10:47:57 +02:00
parent 3b5dc79af2
commit e3169b2067
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ public class BlockApparatusRenderer implements ISimpleBlockRenderingHandler {
= ((BlockApparatus) block).getApparatusRenderer(meta);
if (ren != null)
ren.renderApparatus(world, renderer, x, y, z, block, meta, false);
if (block.getRenderBlockPass() == 0)
return true;
}
return false;
}