Duplicate last tile image automatically to all for lua node definitions
parent
fdf6eecd59
commit
ff1ae29f97
|
@ -529,6 +529,14 @@ static int l_register_node(lua_State *L)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Copy last value to all remaining textures
|
||||||
|
if(i >= 1){
|
||||||
|
std::string lastname = f.tname_tiles[i-1];
|
||||||
|
while(i < 6){
|
||||||
|
f.tname_tiles[i] = lastname;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lua_pop(L, 1);
|
lua_pop(L, 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue