0

removed historical, seperate mask from texture tuples (Issue #516)

This commit is contained in:
Aaron Griffith
2011-10-31 13:40:38 -04:00
parent 69c109fc05
commit 75858f2df8
2 changed files with 3 additions and 3 deletions

View File

@@ -450,8 +450,8 @@ chunk_render(PyObject *self, PyObject *args) {
PyObject *src, *mask, *mask_light;
int randx = 0, randy = 0;
src = PyTuple_GetItem(t, 0);
mask = PyTuple_GetItem(t, 1);
mask_light = PyTuple_GetItem(t, 2);
mask = PyTuple_GetItem(t, 0);
mask_light = PyTuple_GetItem(t, 1);
if (mask == Py_None)
mask = src;