2012-10-11 22:03:57 +06:00
|
|
|
DISABLE_BLOCKS={
|
|
|
|
}
|
|
|
|
|
|
|
|
for i=1, #DISABLE_BLOCKS do
|
|
|
|
minetest.register_node(":"..DISABLE_BLOCKS[i], {
|
|
|
|
drawtype = "airlike",
|
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
air_equivalent = true,
|
|
|
|
})
|
2012-10-30 21:10:03 +06:00
|
|
|
end
|