2012-08-06 03:29:59 +02:00
|
|
|
-- Pipeworks mod by Vanessa Ezekowitz - 2012-08-05
|
2012-07-12 23:52:35 +02:00
|
|
|
--
|
|
|
|
-- Entirely my own code. This mod merely supplies enough nodes to build
|
2012-08-06 03:29:59 +02:00
|
|
|
-- a bunch of pipes in all directions and with all types of junctions
|
2012-07-12 23:52:35 +02:00
|
|
|
--
|
|
|
|
-- License: WTFPL
|
|
|
|
--
|
|
|
|
|
2012-08-19 03:26:07 +02:00
|
|
|
-- comment-out the following dofile line to disnable the old pipe nodes.
|
2012-08-19 03:24:30 +02:00
|
|
|
dofile(minetest.get_modpath("pipeworks").."/oldpipes.lua")
|
2012-07-12 23:52:35 +02:00
|
|
|
|
2012-08-18 14:46:17 +02:00
|
|
|
-- tables
|
2012-07-12 23:52:35 +02:00
|
|
|
|
2012-08-18 14:46:17 +02:00
|
|
|
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_000000_empty")
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_leftstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -32/64, -2/64, -6/64, 1/64, 2/64, 6/64 }, -- pipe segment against -X face
|
|
|
|
{ -32/64, -4/64, -5/64, 1/64, 4/64, 5/64 },
|
|
|
|
{ -32/64, -5/64, -4/64, 1/64, 5/64, 4/64 },
|
|
|
|
{ -32/64, -6/64, -2/64, 1/64, 6/64, 2/64 },
|
|
|
|
|
|
|
|
{ -32/64, -3/64, -8/64, -30/64, 3/64, 8/64 }, -- (the flange for it)
|
|
|
|
{ -32/64, -5/64, -7/64, -30/64, 5/64, 7/64 },
|
|
|
|
{ -32/64, -6/64, -6/64, -30/64, 6/64, 6/64 },
|
|
|
|
{ -32/64, -7/64, -5/64, -30/64, 7/64, 5/64 },
|
|
|
|
{ -32/64, -8/64, -3/64, -30/64, 8/64, 3/64 }
|
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_rightstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -1/64, -2/64, -6/64, 32/64, 2/64, 6/64 }, -- pipe segment against +X face
|
|
|
|
{ -1/64, -4/64, -5/64, 32/64, 4/64, 5/64 },
|
|
|
|
{ -1/64, -5/64, -4/64, 32/64, 5/64, 4/64 },
|
|
|
|
{ -1/64, -6/64, -2/64, 32/64, 6/64, 2/64 },
|
|
|
|
|
|
|
|
{ 30/64, -3/64, -8/64, 32/64, 3/64, 8/64 }, -- (the flange for it)
|
|
|
|
{ 30/64, -5/64, -7/64, 32/64, 5/64, 7/64 },
|
|
|
|
{ 30/64, -6/64, -6/64, 32/64, 6/64, 6/64 },
|
|
|
|
{ 30/64, -7/64, -5/64, 32/64, 7/64, 5/64 },
|
|
|
|
{ 30/64, -8/64, -3/64, 32/64, 8/64, 3/64 }
|
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_bottomstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -2/64, -32/64, -6/64, 2/64, 1/64, 6/64 }, -- pipe segment against -Y face
|
|
|
|
{ -4/64, -32/64, -5/64, 4/64, 1/64, 5/64 },
|
|
|
|
{ -5/64, -32/64, -4/64, 5/64, 1/64, 4/64 },
|
|
|
|
{ -6/64, -32/64, -2/64, 6/64, 1/64, 2/64 },
|
|
|
|
|
|
|
|
{ -3/64, -32/64, -8/64, 3/64, -30/64, 8/64 }, -- (the flange for it)
|
|
|
|
{ -5/64, -32/64, -7/64, 5/64, -30/64, 7/64 },
|
|
|
|
{ -6/64, -32/64, -6/64, 6/64, -30/64, 6/64 },
|
|
|
|
{ -7/64, -32/64, -5/64, 7/64, -30/64, 5/64 },
|
|
|
|
{ -8/64, -32/64, -3/64, 8/64, -30/64, 3/64 }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_topstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -2/64, -1/64, -6/64, 2/64, 32/64, 6/64 }, -- pipe segment against +Y face
|
|
|
|
{ -4/64, -1/64, -5/64, 4/64, 32/64, 5/64 },
|
|
|
|
{ -5/64, -1/64, -4/64, 5/64, 32/64, 4/64 },
|
|
|
|
{ -6/64, -1/64, -2/64, 6/64, 32/64, 2/64 },
|
|
|
|
|
|
|
|
{ -3/64, 30/64, -8/64, 3/64, 32/64, 8/64 }, -- (the flange for it)
|
|
|
|
{ -5/64, 30/64, -7/64, 5/64, 32/64, 7/64 },
|
|
|
|
{ -6/64, 30/64, -6/64, 6/64, 32/64, 6/64 },
|
|
|
|
{ -7/64, 30/64, -5/64, 7/64, 32/64, 5/64 },
|
|
|
|
{ -8/64, 30/64, -3/64, 8/64, 32/64, 3/64 }
|
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_frontstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -6/64, -2/64, -32/64, 6/64, 2/64, 1/64 }, -- pipe segment against -Z face
|
|
|
|
{ -5/64, -4/64, -32/64, 5/64, 4/64, 1/64 },
|
|
|
|
{ -4/64, -5/64, -32/64, 4/64, 5/64, 1/64 },
|
|
|
|
{ -2/64, -6/64, -32/64, 2/64, 6/64, 1/64 },
|
|
|
|
|
|
|
|
{ -8/64, -3/64, -32/64, 8/64, 3/64, -30/64 }, -- (the flange for it)
|
|
|
|
{ -7/64, -5/64, -32/64, 7/64, 5/64, -30/64 },
|
|
|
|
{ -6/64, -6/64, -32/64, 6/64, 6/64, -30/64 },
|
|
|
|
{ -5/64, -7/64, -32/64, 5/64, 7/64, -30/64 },
|
|
|
|
{ -3/64, -8/64, -32/64, 3/64, 8/64, -30/64 }
|
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_backstub = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -6/64, -2/64, -1/64, 6/64, 2/64, 32/64 }, -- pipe segment against -Z face
|
|
|
|
{ -5/64, -4/64, -1/64, 5/64, 4/64, 32/64 },
|
|
|
|
{ -4/64, -5/64, -1/64, 4/64, 5/64, 32/64 },
|
|
|
|
{ -2/64, -6/64, -1/64, 2/64, 6/64, 32/64 },
|
|
|
|
|
|
|
|
{ -8/64, -3/64, 30/64, 8/64, 3/64, 32/64 }, -- (the flange for it)
|
|
|
|
{ -7/64, -5/64, 30/64, 7/64, 5/64, 32/64 },
|
|
|
|
{ -6/64, -6/64, 30/64, 6/64, 6/64, 32/64 },
|
|
|
|
{ -5/64, -7/64, 30/64, 5/64, 7/64, 32/64 },
|
|
|
|
{ -3/64, -8/64, 30/64, 3/64, 8/64, 32/64 }
|
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_selectboxes = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -32/64, -8/64, -8/64, 8/64, 8/64, 8/64 },
|
|
|
|
{ -8/64 , -8/64, -8/64, 32/64, 8/64, 8/64 },
|
|
|
|
{ -8/64 , -32/64, -8/64, 8/64, 8/64, 8/64 },
|
|
|
|
{ -8/64 , -8/64, -8/64, 8/64, 32/64, 8/64 },
|
|
|
|
{ -8/64 , -8/64, -32/64, 8/64, 8/64, 8/64 },
|
|
|
|
{ -8/64 , -8/64, -8/64, 8/64, 8/64, 32/64 }
|
|
|
|
}
|
2012-07-12 23:52:35 +02:00
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_bendsphere = {
|
2012-08-18 14:46:17 +02:00
|
|
|
{ -4/64, -4/64, -4/64, 4/64, 4/64, 4/64 },
|
|
|
|
{ -5/64, -3/64, -3/64, 5/64, 3/64, 3/64 },
|
|
|
|
{ -3/64, -5/64, -3/64, 3/64, 5/64, 3/64 },
|
|
|
|
{ -3/64, -3/64, -5/64, 3/64, 3/64, 5/64 }
|
2012-08-06 03:29:59 +02:00
|
|
|
}
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
-- Functions
|
2012-08-06 03:29:59 +02:00
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
dbg = function(s)
|
2012-08-18 14:46:17 +02:00
|
|
|
if DEBUG == 1 then
|
|
|
|
print('[PIPEWORKS] ' .. s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function fix_newpipe_names(table, replacement)
|
2012-08-06 03:29:59 +02:00
|
|
|
outtable={}
|
2012-08-18 14:46:17 +02:00
|
|
|
for i in ipairs(table) do
|
|
|
|
outtable[i]=string.gsub(table[i], "_XXXXX", replacement)
|
2012-08-06 03:29:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return outtable
|
|
|
|
end
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
function pipe_addbox(t, b)
|
2012-08-18 14:46:17 +02:00
|
|
|
for i in ipairs(b)
|
|
|
|
do table.insert(t, b[i])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- now define the nodes!
|
|
|
|
|
|
|
|
for xm = 0, 1 do
|
|
|
|
for xp = 0, 1 do
|
|
|
|
for ym = 0, 1 do
|
|
|
|
for yp = 0, 1 do
|
|
|
|
for zm = 0, 1 do
|
|
|
|
for zp = 0, 1 do
|
2012-08-19 07:56:30 +02:00
|
|
|
local outboxes = {}
|
|
|
|
local outsel = {}
|
|
|
|
local outimgs = {}
|
|
|
|
|
2012-08-18 14:46:17 +02:00
|
|
|
if yp==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_topstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[4])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
if ym==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_bottomstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[3])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
if xp==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_rightstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[2])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
if xm==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_leftstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[1])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
if zp==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_backstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[6])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
if zm==1 then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_frontstub)
|
|
|
|
table.insert(outsel, pipe_selectboxes[5])
|
2012-08-18 14:46:17 +02:00
|
|
|
table.insert(outimgs, "pipeworks_pipe_end.png")
|
|
|
|
else
|
|
|
|
table.insert(outimgs, "pipeworks_plain.png")
|
|
|
|
end
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
local jx = xp+xm
|
|
|
|
local jy = yp+ym
|
|
|
|
local jz = zp+zm
|
2012-08-19 04:12:29 +02:00
|
|
|
|
|
|
|
if (jx+jy+jz) == 1 then
|
|
|
|
if xm == 1 then
|
|
|
|
table.remove(outimgs, 3)
|
|
|
|
table.insert(outimgs, 3, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
if xp == 1 then
|
|
|
|
table.remove(outimgs, 4)
|
|
|
|
table.insert(outimgs, 4, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
if ym == 1 then
|
|
|
|
table.remove(outimgs, 1)
|
|
|
|
table.insert(outimgs, 1, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
if xp == 1 then
|
|
|
|
table.remove(outimgs, 2)
|
|
|
|
table.insert(outimgs, 2, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
if zm == 1 then
|
|
|
|
table.remove(outimgs, 5)
|
|
|
|
table.insert(outimgs, 5, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
if zp == 1 then
|
|
|
|
table.remove(outimgs, 6)
|
|
|
|
table.insert(outimgs, 6, "pipeworks_pipe_end_XXXXX.png")
|
|
|
|
end
|
|
|
|
end
|
2012-08-18 14:46:17 +02:00
|
|
|
|
|
|
|
if (jx==1 and jy==1 and jz~=1) or (jx==1 and jy~=1 and jz==1) or (jx~= 1 and jy==1 and jz==1) then
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_addbox(outboxes, pipe_bendsphere)
|
2012-08-18 14:46:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if (jx==2 and jy~=2 and jz~=2) then
|
|
|
|
table.remove(outimgs, 5)
|
|
|
|
table.remove(outimgs, 5)
|
|
|
|
table.insert(outimgs, 5, "pipeworks_windowed_XXXXX.png")
|
|
|
|
table.insert(outimgs, 5, "pipeworks_windowed_XXXXX.png")
|
|
|
|
end
|
|
|
|
|
|
|
|
if (jx~=2 and jy~=2 and jz==2) or (jx~=2 and jy==2 and jz~=2) then
|
|
|
|
table.remove(outimgs, 3)
|
|
|
|
table.remove(outimgs, 3)
|
|
|
|
table.insert(outimgs, 3, "pipeworks_windowed_XXXXX.png")
|
|
|
|
table.insert(outimgs, 3, "pipeworks_windowed_XXXXX.png")
|
|
|
|
end
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
local pname = xm..xp..ym..yp..zm..zp
|
|
|
|
local pgroups = ""
|
2012-08-06 03:29:59 +02:00
|
|
|
|
2012-08-19 03:24:30 +02:00
|
|
|
if pname ~= "110000" then
|
|
|
|
pgroups = {snappy=3, pipe=1, not_in_creative_inventory=1}
|
|
|
|
pipedesc = "Pipe segment (empty, "..pname..")... You hacker, you."
|
|
|
|
else
|
|
|
|
pgroups = {snappy=3, pipe=1}
|
|
|
|
pipedesc = "Pipe segment"
|
|
|
|
end
|
|
|
|
|
2012-08-18 14:46:17 +02:00
|
|
|
minetest.register_node("pipeworks:pipe_"..pname.."_empty", {
|
2012-08-19 03:24:30 +02:00
|
|
|
description = pipedesc,
|
2012-08-06 03:29:59 +02:00
|
|
|
drawtype = "nodebox",
|
2012-08-18 14:46:17 +02:00
|
|
|
tiles = fix_newpipe_names(outimgs, "_empty"),
|
2012-08-06 03:29:59 +02:00
|
|
|
paramtype = "light",
|
2012-08-06 04:52:18 +02:00
|
|
|
selection_box = {
|
2012-08-18 14:46:17 +02:00
|
|
|
type = "fixed",
|
|
|
|
fixed = outsel
|
2012-08-06 04:52:18 +02:00
|
|
|
},
|
2012-08-06 03:29:59 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2012-08-18 14:46:17 +02:00
|
|
|
fixed = outboxes
|
2012-08-06 03:29:59 +02:00
|
|
|
},
|
2012-08-19 03:24:30 +02:00
|
|
|
groups = pgroups,
|
2012-08-06 03:29:59 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
stack_max = 99,
|
2012-08-18 14:46:17 +02:00
|
|
|
drop = "pipeworks:pipe_110000_empty",
|
|
|
|
after_place_node = function(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_empty")
|
|
|
|
pipe_autoroute(pos, "_empty")
|
2012-08-18 14:46:17 +02:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_empty")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_empty")
|
2012-08-18 14:46:17 +02:00
|
|
|
end
|
2012-08-06 03:29:59 +02:00
|
|
|
})
|
|
|
|
|
2012-08-18 14:46:17 +02:00
|
|
|
minetest.register_node("pipeworks:pipe_"..pname.."_loaded", {
|
2012-08-19 03:24:30 +02:00
|
|
|
description = "Pipe segment (loaded, "..pname..")... You hacker, you.",
|
2012-08-06 03:29:59 +02:00
|
|
|
drawtype = "nodebox",
|
2012-08-18 14:46:17 +02:00
|
|
|
tiles = fix_newpipe_names(outimgs, "_loaded"),
|
2012-08-06 03:29:59 +02:00
|
|
|
paramtype = "light",
|
2012-08-06 04:52:18 +02:00
|
|
|
selection_box = {
|
2012-08-18 14:46:17 +02:00
|
|
|
type = "fixed",
|
|
|
|
fixed = outsel
|
|
|
|
},
|
2012-08-06 03:29:59 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2012-08-18 14:46:17 +02:00
|
|
|
fixed = outboxes
|
2012-08-06 03:29:59 +02:00
|
|
|
},
|
2012-08-19 03:24:30 +02:00
|
|
|
groups = {snappy=3, pipe=1, not_in_creative_inventory=1},
|
2012-08-06 03:29:59 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
stack_max = 99,
|
2012-08-18 14:46:17 +02:00
|
|
|
drop = "pipeworks:pipe_110000_loaded",
|
|
|
|
after_place_node = function(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_loaded")
|
|
|
|
pipe_autoroute(pos, "_loaded")
|
2012-08-18 14:46:17 +02:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2012-08-19 07:56:30 +02:00
|
|
|
pipe_autoroute({ x=pos.x-1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x+1, y=pos.y , z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y-1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y+1, z=pos.z }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z-1 }, "_loaded")
|
|
|
|
pipe_autoroute({ x=pos.x , y=pos.y , z=pos.z+1 }, "_loaded")
|
2012-08-18 14:46:17 +02:00
|
|
|
end
|
2012-08-06 03:29:59 +02:00
|
|
|
})
|
|
|
|
end
|
2012-08-18 14:46:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-19 07:56:30 +02:00
|
|
|
dofile(minetest.get_modpath("pipeworks").."/devices.lua")
|
|
|
|
dofile(minetest.get_modpath("pipeworks").."/autoplace.lua")
|
2012-08-06 03:29:59 +02:00
|
|
|
|
|
|
|
print("Pipeworks loaded!")
|