forked from VoxeLibre/VoxeLibre
Remove redundant legacy code in stairs mod
This commit is contained in:
parent
fe37a4d9e4
commit
f4208bd8e7
|
@ -6,12 +6,6 @@
|
||||||
|
|
||||||
stairs = {}
|
stairs = {}
|
||||||
|
|
||||||
|
|
||||||
-- Get setting for replace ABM
|
|
||||||
|
|
||||||
local replace = minetest.setting_getbool("enable_stairs_replace_abm")
|
|
||||||
|
|
||||||
|
|
||||||
-- Register stairs.
|
-- Register stairs.
|
||||||
-- Node will be called stairs:stair_<subname>
|
-- Node will be called stairs:stair_<subname>
|
||||||
|
|
||||||
|
@ -73,14 +67,6 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- for replace ABM
|
|
||||||
if replace then
|
|
||||||
minetest.register_node(":stairs:stair_" .. subname .. "upside_down", {
|
|
||||||
replace_name = "stairs:stair_" .. subname,
|
|
||||||
groups = {slabs_replace = 1},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
if recipeitem then
|
if recipeitem then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'stairs:stair_' .. subname .. ' 8',
|
output = 'stairs:stair_' .. subname .. ' 8',
|
||||||
|
@ -100,20 +86,6 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
||||||
{recipeitem, recipeitem, recipeitem},
|
{recipeitem, recipeitem, recipeitem},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Fuel
|
|
||||||
local baseburntime = minetest.get_craft_result({
|
|
||||||
method = "fuel",
|
|
||||||
width = 1,
|
|
||||||
items = {recipeitem}
|
|
||||||
}).time
|
|
||||||
if baseburntime > 0 then
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = 'stairs:stair_' .. subname,
|
|
||||||
burntime = math.floor(baseburntime * 0.75),
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -200,14 +172,6 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- for replace ABM
|
|
||||||
if replace then
|
|
||||||
minetest.register_node(":stairs:slab_" .. subname .. "upside_down", {
|
|
||||||
replace_name = "stairs:slab_".. subname,
|
|
||||||
groups = {slabs_replace = 1},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
if recipeitem then
|
if recipeitem then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'stairs:slab_' .. subname .. ' 6',
|
output = 'stairs:slab_' .. subname .. ' 6',
|
||||||
|
@ -216,19 +180,6 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Fuel
|
|
||||||
local baseburntime = minetest.get_craft_result({
|
|
||||||
method = "fuel",
|
|
||||||
width = 1,
|
|
||||||
items = {recipeitem}
|
|
||||||
}).time
|
|
||||||
if baseburntime > 0 then
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = 'stairs:slab_' .. subname,
|
|
||||||
burntime = math.floor(baseburntime * 0.5),
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue