Merge pull request #27 from OgelGames/master

Make doors top not diggable
This commit is contained in:
Thomas Rudin 2019-12-11 21:03:31 +01:00 committed by GitHub
commit d1f0a8f1cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -265,6 +265,10 @@ for _, current_door in ipairs(doors) do
},
}
local function nodig(pos, digger)
return false
end
local doors_rightclick = nil -- Crashes serv if empty table !
if not scifi_nodes.doors_open_with_mesecon_only then doors_rightclick = open_door end
@ -327,6 +331,7 @@ for _, current_door in ipairs(doors) do
{0, 0, 0, 0, 0, 0},
}
},
can_dig = nodig,
})
minetest.register_node(opened, {
@ -385,5 +390,6 @@ for _, current_door in ipairs(doors) do
{0, 0, 0, 0, 0, 0},
}
},
can_dig = nodig,
})
end -- end of doors table browsing