1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-20 03:30:22 +02:00
server-nalc/mods/moreblocks/stairsplus/registrations.lua

60 lines
1.1 KiB
Lua
Raw Normal View History

--[[
More Blocks: registrations
Copyright (c) 2011-2015 Calinou and contributors.
Licensed under the zlib license. See LICENSE.md for more information.
--]]
2014-10-28 18:01:32 +01:00
local default_nodes = { -- Default stairs/slabs/panels/microblocks:
"stone",
"cobble",
"mossycobble",
"brick",
"sandstone",
"steelblock",
"goldblock",
"copperblock",
"bronzeblock",
"diamondblock",
"desert_stone",
2015-01-24 20:18:48 +01:00
"desert_cobble",
"meselamp",
2014-10-28 18:01:32 +01:00
"glass",
"tree",
"wood",
"jungletree",
"junglewood",
"pine_tree",
"pine_wood",
"cherry_tree",
"cherry_plank",
"acacia_tree",
"acacia_wood",
2014-10-28 18:01:32 +01:00
"obsidian",
"obsidian_glass",
"stonebrick",
"desert_stonebrick",
"sandstonebrick",
"obsidianbrick",
2014-10-28 18:01:32 +01:00
}
for _, name in pairs(default_nodes) do
local nodename = "default:" .. name
local ndef = minetest.registered_nodes[nodename]
if ndef then
local drop
if type(ndef.drop) == "string" then
drop = ndef.drop:split(" ")[1]:sub(9)
end
stairsplus:register_all("moreblocks", name, nodename, {
description = ndef.description,
drop = drop,
2015-11-13 19:11:45 +01:00
groups = ndef.groups,
sounds = ndef.sounds,
tiles = ndef.tiles,
sunlight_propagates = true,
light_source = ndef.light_source
})
2014-10-28 18:01:32 +01:00
end
end