fix vanilla fade order

This commit is contained in:
James Seibel
2026-02-07 17:00:35 -06:00
parent 7834213a60
commit caf7f64f11
3 changed files with 5 additions and 5 deletions
@@ -65,12 +65,12 @@ public class MixinChunkSectionsToRender
if (chunkSectionLayerGroup == ChunkSectionLayerGroup.TRANSLUCENT)
{
ClientApi.INSTANCE.renderFadeTransparent();
ClientApi.INSTANCE.renderFadeOpaque();
ClientApi.INSTANCE.renderDeferredLodsForShaders();
}
else if (chunkSectionLayerGroup == ChunkSectionLayerGroup.TRIPWIRE)
{
ClientApi.INSTANCE.renderFadeOpaque();
ClientApi.INSTANCE.renderFadeTransparent();
}
}