Final Update for TU24 2/3

LCE Renewed
- Merged some fixes and code updates from TU25.
* Fixed transparent items in hand.
* Beacon beams fixes.
- Fixed a crash when a dispenser is dispensing water or lava when the dispenser is blocked.

Minecraft Consoles
- Merged Asynchronous server joining
- Memory leak fix: Make chunks unload properly

Other
- Fixed Server Menu and Rename World Menu in 720p Res
This commit is contained in:
GabsPuNs
2026-03-25 05:00:44 -04:00
parent 3edf3c0782
commit 7deba3acb2
26 changed files with 863 additions and 175 deletions

View File

@@ -243,7 +243,10 @@ void ItemInHandRenderer::renderItem(shared_ptr<LivingEntity> mob, shared_ptr<Ite
MemSect(31);
minecraft->textures->bindTexture(minecraft->textures->getTextureLocation(Icon::TYPE_TERRAIN));
MemSect(0);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
tileRenderer->renderTile(Tile::tiles[item->id], item->getAuxValue(), SharedConstants::TEXTURE_LIGHTING ? 1.0f : mob->getBrightness(1)); // 4J - change brought forward from 1.8.2
glDisable(GL_BLEND);
}
else
{