From a77095ebe6e11ceab88d8b6c8a68a9b6c4440d3f Mon Sep 17 00:00:00 2001 From: Novatux Date: Sat, 19 Jan 2013 17:13:47 +0100 Subject: Fixed a bug where items were not moved after teleport tube when they went to the same direction. --- item_transport.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'item_transport.lua') diff --git a/item_transport.lua b/item_transport.lua index 275d3e8..bed8f31 100644 --- a/item_transport.lua +++ b/item_transport.lua @@ -222,6 +222,8 @@ minetest.register_entity("pipeworks:tubed_item", { end end + local sposcopy={x=self.start_pos.x,y=self.start_pos.y,z=self.start_pos.z} + node = minetest.env:get_node(self.start_pos) if moved and minetest.get_item_group(node.name,"tubedevice_receiver")==1 then if minetest.registered_nodes[node.name].tube and minetest.registered_nodes[node.name].tube.insert_object then @@ -254,7 +256,8 @@ minetest.register_entity("pipeworks:tubed_item", { end end - if velocity.x~=velocitycopy.x or velocity.y~=velocitycopy.y or velocity.z~=velocitycopy.z then + if velocity.x~=velocitycopy.x or velocity.y~=velocitycopy.y or velocity.z~=velocitycopy.z or + self.start_pos.x~=sposcopy.x or self.start_pos.y~=sposcopy.y or self.start_pos.z~=sposcopy.z then self.object:setpos(self.start_pos) self.object:setvelocity(velocity) end -- cgit v1.2.3