0

Improve nether rendering with minecraft 1.5

The new nether quartz ore block was not recognized and was causing "pillars"
of netherrock to be rendered (with a quartz ore on top).  the same
seemed to be happened with Lava, so included taht as well
This commit is contained in:
Andrew Chin
2013-03-15 19:53:01 -04:00
parent dd6538b55e
commit d8a70f2d9a

View File

@@ -35,7 +35,7 @@ walk_chunk(RenderState *state, RenderPrimitiveNether *data) {
for (y = NETHER_ROOF-1; y>=0; y--) {
id = get_data(state, BLOCKS, x, y - (state->chunky * 16), z);
if (id == 7 || id == 87)
if (id == 7 || id == 87 || id == 153 || id == 11)
data->remove_block[x+1][y][z+1] = 1;
else
break;