diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-01 16:30:21 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-01 16:30:21 -0500 |
commit | 1a562d23a85568ec111da07411958c09b0b95117 (patch) | |
tree | 5d173ba7346ba5f366fdaacf8d65a71b7f4c796f /init.lua | |
parent | 6cca6f9857084b00ab420bdfbcc2b68b07195675 (diff) |
added a "sealed" entry/exit panel (really just a horizontal pipe with a metal
panel overlayed into the middle). Also, tweaked pipes to always drop the
empty ones.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -121,6 +121,10 @@ spigot_bottomstub = { { -8/64, -16/64, -3/64, 8/64, -14/64, 3/64 } } +entry_panel = { + { -8/16, -8/16, -1/16, 8/16, 8/16, 1/16 } +} + -- Functions dbg = function(s) @@ -307,7 +311,7 @@ for zp = 0, 1 do sounds = default.node_sound_wood_defaults(), walkable = true, stack_max = 99, - drop = "pipeworks:pipe_110000_loaded", + drop = "pipeworks:pipe_110000_empty", pipelike=1, on_construct = function(pos) local meta = minetest.env:get_meta(pos) |