mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
Added outlet grate, made it participate in autoplace algorithm.
This commit is contained in:
parent
bb168e75e4
commit
a66d9a8564
@ -107,7 +107,8 @@ pipes_scansurroundings = function(pos)
|
||||
|
||||
if (string.find(nym.name, "pipeworks:storage_tank_x") ~= nil) or
|
||||
(string.find(nym.name, "pipeworks:storage_tank_z") ~= nil) or
|
||||
(string.find(nym.name, "pipeworks:intake") ~= nil) then
|
||||
(string.find(nym.name, "pipeworks:intake") ~= nil) or
|
||||
(string.find(nym.name, "pipeworks:outlet") ~= nil) then
|
||||
pym=1
|
||||
end
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
Changelog
|
||||
---------
|
||||
|
||||
2012-08-22: Added outlet grate, made it participate in autoplace algorithm.
|
||||
|
||||
2012-08-21: Made storage tank participate in autoplace algorithm. Tuned API a
|
||||
little to allow for more flexible placement. Re-organized code a bit to allow
|
||||
for some upcoming rules changes. Made storage tanks' upper/lower fittins and
|
||||
|
39
devices.lua
39
devices.lua
@ -279,6 +279,45 @@ minetest.register_node("pipeworks:intake", {
|
||||
end,
|
||||
})
|
||||
|
||||
-- outlet grate
|
||||
|
||||
minetest.register_node("pipeworks:outlet", {
|
||||
description = "Outlet grate",
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"pipeworks_outlet_top.png",
|
||||
"pipeworks_outlet_sides.png",
|
||||
"pipeworks_outlet_sides.png",
|
||||
"pipeworks_outlet_sides.png",
|
||||
"pipeworks_outlet_sides.png",
|
||||
"pipeworks_outlet_sides.png"
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
||||
},
|
||||
paramtype = "light",
|
||||
groups = {snappy=3, pipe=1},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
walkable = true,
|
||||
stack_max = 99,
|
||||
after_place_node = function(pos)
|
||||
pipe_scanforobjects(pos)
|
||||
end,
|
||||
after_dig_node = function(pos)
|
||||
pipe_scanforobjects(pos)
|
||||
end,
|
||||
pipelike=1,
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
meta:set_int("pipelike",1)
|
||||
end,
|
||||
})
|
||||
|
||||
-- tank
|
||||
|
||||
minetest.register_node("pipeworks:storage_tank_x", {
|
||||
|
BIN
textures/pipeworks_outlet_sides.png
Normal file
BIN
textures/pipeworks_outlet_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.9 KiB |
BIN
textures/pipeworks_outlet_top.png
Normal file
BIN
textures/pipeworks_outlet_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
Loading…
Reference in New Issue
Block a user