1
0
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:
Luke aka SwissalpS
2024-03-01 07:00:13 +01:00
committed by GitHub
parent 014ca0179f
commit 49703e7386
10 changed files with 213 additions and 122 deletions

View File

@ -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