1
0
鏡像自 https://github.com/mt-mods/pipeworks.git 已同步 2025-11-06 06:05:20 +01:00

Merge pull request #23 from Uberi/master

Fix deployer in latest minetest.
此提交包含在:
VanessaE
2013-04-01 17:21:38 -07:00
當前提交 7e328b1d11
共有 2 個檔案被更改,包括 5 行新增1 行删除

查看文件

@@ -47,6 +47,7 @@ deployer_on = function(pos, node)
local placer={}
function placer:get_player_name() return "deployer" end
function placer:getpos() return pos end
function placer:get_player_control() return {jump=false,right=false,left=false,LMB=false,RMB=false,sneak=false,aux1=false,down=false,up=false} end
local stack2=minetest.item_place(stack,placer,{type="node", under=pos1, above=pos2})
invlist[i]=stack2
inv:set_list("main",invlist)

查看文件

@@ -30,6 +30,9 @@ minetest.register_node("pipeworks:filter", {
local inv = meta:get_inventory()
return inv:is_empty("main")
end,
after_place_node = function(pos)
tube_scanforobjects(pos)
end,
mesecons={effector={action_on=function(pos,node)
minetest.registered_nodes[node.name].on_punch(pos,node,nil)
end}},
@@ -470,4 +473,4 @@ function go_next(pos,velocity,stack)
velocity.z=chests[n].vect.z*speed
end
return 1
end
end