mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
minor tweak to allow the register_tube() function to use any arbitrary
namespace for the tube instead of forcing it to be pipeworks:
This commit is contained in:
parent
9a42a5f18b
commit
00e6d148d5
@ -249,8 +249,11 @@ for zp = 0, 1 do
|
||||
nodedef[key]=value
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_node(name.."_"..tname, nodedef)
|
||||
|
||||
local prefix=":"
|
||||
if string.find(name, "pipeworks:") then prefix = "" end
|
||||
|
||||
minetest.register_node(prefix..name.."_"..tname, nodedef)
|
||||
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user