mirror of
https://github.com/minetest-mods/towercrane.git
synced 2024-11-22 15:23:51 +01:00
Add get_node_lvm() improvement
This commit is contained in:
parent
4a1b5b2333
commit
e66f262888
6
init.lua
6
init.lua
@ -67,11 +67,13 @@ local function get_node_lvm(pos)
|
||||
local param2_data = vm:get_param2_data()
|
||||
local area = VoxelArea:new({MinEdge = MinEdge, MaxEdge = MaxEdge})
|
||||
local idx = area:indexp(pos)
|
||||
node = {
|
||||
if data[idx] and param2_data[idx] then
|
||||
return {
|
||||
name = minetest.get_name_from_content_id(data[idx]),
|
||||
param2 = param2_data[idx]
|
||||
}
|
||||
return node
|
||||
end
|
||||
return {name="ignore", param2=0}
|
||||
end
|
||||
|
||||
local function turnright(dir)
|
||||
|
Loading…
Reference in New Issue
Block a user