floodfill legacy blockId fixes

This commit is contained in:
NULL511
2024-05-02 18:06:40 -04:00
parent 6ec7e0187e
commit d8b5c989e8
4 changed files with 4 additions and 4 deletions

View File

@ -442,7 +442,7 @@ void main() {
Albedo.rgb = mix(Albedo.rgb, aerochrome_color, 0.3);
}
#endif
else if(blockID == 8 || blockID == 10002)
else if(blockID == 8 || (blockID >= 1200 && blockID < 1300))
{
// IR Absorbsive? Dark.
Albedo.rgb = mix(Albedo.rgb, vec3(0.01, 0.08, 0.15), 0.5);