0

Fix missing dark-oak leaves

This commit is contained in:
Andrew Chin
2013-10-26 14:18:17 -04:00
parent 0306a7040d
commit 63311fbd92
3 changed files with 12 additions and 7 deletions

View File

@@ -97,7 +97,7 @@ base_draw(void *data, RenderState *state, PyObject *src, PyObject *mask, PyObjec
/* water */
state->block == 8 || state->block == 9 ||
/* leaves */
state->block == 18 ||
state->block == 18 || state->block == 161 ||
/* tallgrass, but not dead shrubs */
(state->block == 31 && state->block_data != 0) ||
/* pumpkin/melon stem, not fully grown. Fully grown stems
@@ -134,6 +134,7 @@ base_draw(void *data, RenderState *state, PyObject *src, PyObject *mask, PyObjec
color_table = self->watercolor;
break;
case 18:
case 161:
/* leaves */
color_table = self->foliagecolor;
if (state->block_data == 2)