From d8a70f2d9a314b6418e41b437fa5e5d56a6c4b93 Mon Sep 17 00:00:00 2001 From: Andrew Chin Date: Fri, 15 Mar 2013 19:53:01 -0400 Subject: [PATCH] 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 --- overviewer_core/src/primitives/nether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/src/primitives/nether.c b/overviewer_core/src/primitives/nether.c index 671fd5f..c086dd8 100644 --- a/overviewer_core/src/primitives/nether.c +++ b/overviewer_core/src/primitives/nether.c @@ -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;