Forgot to update on cable add/destroy+use minetest.hash_node_position because else it did not work.

This commit is contained in:
Novatux
2013-08-29 18:51:53 +02:00
committed by ShadowNinja
parent f4ac2b8c1e
commit 12d29c2139
2 changed files with 8 additions and 2 deletions

View File

@ -35,6 +35,12 @@ function technic.register_cable(tier, size)
type = "fixed",
fixed = technic.gen_cable_nodebox(x1, y1, z1, x2, y2, z2, size)
},
on_construct = function()
technic.networks = {}
end,
on_destruct = function()
technic.networks = {}
end,
after_place_node = function(pos)
local node = minetest.get_node(pos)
technic.update_cables(pos, technic.get_cable_tier(node.name))