Issue Description
Adult drowned have glowing emissive eyes, but baby drowned (also known as gurgles) do not glow at all (despite sharing the same entity ID).
Steps to reproduce
Install latest Complementary Reimagined on Minecraft 26.2 (with IntegratedPBR enabled).
Find or spawn a drowned with a nearby baby (Gurgle). Adult drowned eyes glow; Gurgle eyes do not.
Suggested fix from Claude
In shaders/lib/materials/materialHandling/entityIPBR.glsl :
} else /*if (entityId == 50028)*/ { // Drowned + Gurgle
if (atlasSize.x < 900) {
if (CheckForColor(color.rgb, vec3(143, 241, 215)) || // Adult drowned eyes
CheckForColor(color.rgb, vec3( 49, 173, 183)) ||
CheckForColor(color.rgb, vec3(101, 224, 221)) ||
CheckForColor(color.rgb, vec3(164, 255, 247)) || // Gurgle eyes (26.1+)
CheckForColor(color.rgb, vec3(116, 255, 254)) ||
CheckForColor(color.rgb, vec3( 56, 199, 210))) emission = 2.5;
}
}
Issue Description
Adult drowned have glowing emissive eyes, but baby drowned (also known as gurgles) do not glow at all (despite sharing the same entity ID).
Steps to reproduce
Install latest Complementary Reimagined on Minecraft 26.2 (with IntegratedPBR enabled).
Find or spawn a drowned with a nearby baby (Gurgle). Adult drowned eyes glow; Gurgle eyes do not.
Suggested fix from Claude
In
shaders/lib/materials/materialHandling/entityIPBR.glsl: