mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-06-30 23:20:41 +02:00
is ground content revision (#81)
also cleaned up some of the whitespace indentation and one occurance where ';' was being used instead of ','
This commit is contained in:
committed by
GitHub
parent
014ca0179f
commit
49703e7386
@ -246,6 +246,7 @@ for _, current_door in ipairs(doors) do
|
||||
scifi_nodes_door = 1,
|
||||
door = 1
|
||||
},
|
||||
is_ground_content = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -279,6 +280,7 @@ for _, current_door in ipairs(doors) do
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 1, dig_generic = 3, door = 1},
|
||||
is_ground_content = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -309,6 +311,7 @@ for _, current_door in ipairs(doors) do
|
||||
paramtype2 = "facedir",
|
||||
drop = closed,
|
||||
groups = {cracky = 1, dig_generic = 3, door = 2},
|
||||
is_ground_content = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -340,6 +343,7 @@ for _, current_door in ipairs(doors) do
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 1, dig_generic = 3, door = 2},
|
||||
is_ground_content = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -379,4 +383,4 @@ function scifi_nodes.open_door(pos)
|
||||
-- call open function
|
||||
def._open(pos, node)
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user