re-add lighting

This commit is contained in:
James Seibel
2026-02-28 12:13:38 -06:00
parent 224a5449ed
commit dedcc875d2
7 changed files with 50 additions and 12 deletions
@@ -94,8 +94,9 @@ public class MixinLightTexture
#elif MC_VER < MC_1_21_5
this.renderWrapper.setLightmapId(this.target.getColorTextureId(), clientLevel);
#else
GlTexture glTexture = (GlTexture) this.texture;
this.renderWrapper.setLightmapId(glTexture.glId(), clientLevel);
//GlTexture glTexture = (GlTexture) this.texture;
//this.renderWrapper.setLightmapId(glTexture.glId(), clientLevel);
this.renderWrapper.setLightmapGpuTexture(this.texture, clientLevel);
#endif
}