0

moved trasparent_blocks, etc. into textures.py (Issue #516)

This commit is contained in:
Aaron Griffith
2011-10-31 13:28:28 -04:00
parent 64e67cc827
commit 69c109fc05
5 changed files with 23 additions and 23 deletions

View File

@@ -53,7 +53,7 @@ PyObject *init_chunk_render(PyObject *self, PyObject *args) {
specialblockmap = PyObject_GetAttrString(textures, "specialblockmap");
if (!specialblockmap)
return NULL;
transparent_blocks = PyObject_GetAttrString(chunk_mod, "transparent_blocks");
transparent_blocks = PyObject_GetAttrString(textures, "transparent_blocks");
if (!transparent_blocks)
return NULL;