forked from mtcontrib/pipeworks
Is ground content (#110)
* trashcan isn't ground content * pipes aren't ground content * auto tree tap isn't ground content * filter-injectors aren't ground content * devices aren't ground content also some whitespace indentation fixes * is_ground_content * autocrafter isn't ground content * tubes aren't ground content * pane_embedded_tube isn't ground content * embedded_tube isn't ground content * routing tubes aren't ground content * whitespace fix indentation
This commit is contained in:
committed by
GitHub
parent
96dca7e540
commit
c7b153f1ef
@ -76,6 +76,7 @@ for index, connects in ipairs(cconnects) do
|
||||
fixed = outsel
|
||||
},
|
||||
groups = pgroups,
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.8,
|
||||
_sound_def = {
|
||||
key = "node_sound_metal_defaults",
|
||||
@ -113,6 +114,7 @@ for index, connects in ipairs(cconnects) do
|
||||
fixed = outsel
|
||||
},
|
||||
groups = pgroups,
|
||||
is_ground_content = false,
|
||||
_mcl_hardness=0.8,
|
||||
_sound_def = {
|
||||
key = "node_sound_metal_defaults",
|
||||
@ -151,6 +153,7 @@ if REGISTER_COMPATIBILITY then
|
||||
paramtype = "light",
|
||||
description = S("Pipe Segment (legacy)"),
|
||||
groups = {not_in_creative_inventory = 1, pipe_to_update = 1},
|
||||
is_ground_content = false,
|
||||
drop = "pipeworks:pipe_1_empty",
|
||||
after_place_node = function(pos)
|
||||
pipeworks.scan_for_pipe_objects(pos)
|
||||
@ -163,6 +166,7 @@ if REGISTER_COMPATIBILITY then
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
groups = {not_in_creative_inventory = 1, pipe_to_update = 1},
|
||||
is_ground_content = false,
|
||||
drop = "pipeworks:pipe_1_empty",
|
||||
after_place_node = function(pos)
|
||||
pipeworks.scan_for_pipe_objects(pos)
|
||||
|
Reference in New Issue
Block a user