0

Added nether fences.

This commit is contained in:
Alejandro Aguilera
2011-09-23 10:50:53 +02:00
parent 3a6208ead0
commit 415578e1b6
3 changed files with 19 additions and 15 deletions

View File

@@ -291,7 +291,7 @@ generate_pseudo_data(RenderState *state, unsigned char ancilData) {
* This is a TODO!
*/
} else if ((state->block == 90) || (state->block == 101) ||
(state->block == 102)) {
(state->block == 102) || (state->block == 113)) {
return check_adjacent_blocks(state, x, y, z, state->block);
}
@@ -426,7 +426,8 @@ chunk_render(PyObject *self, PyObject *args) {
(state.block == 20) || (state.block == 54) ||
(state.block == 55) || (state.block == 79) ||
(state.block == 85) || (state.block == 90) ||
(state.block == 101) || (state.block == 102)) {
(state.block == 101) || (state.block == 102) ||
(state.block == 113)) {
ancilData = generate_pseudo_data(&state, ancilData);
state.block_pdata = ancilData;
} else {