Remove legacy stairs ABM

This commit is contained in:
Wuzzy 2017-06-05 14:52:13 +02:00
parent a9969e675e
commit ce8040ff25
1 changed files with 0 additions and 23 deletions

View File

@ -222,29 +222,6 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
end
-- Optionally replace old "upside_down" nodes with new param2 versions.
-- Disabled by default.
if replace then
minetest.register_abm({
label = "Slab replace",
nodenames = {"group:slabs_replace"},
interval = 16,
chance = 1,
action = function(pos, node)
node.name = minetest.registered_nodes[node.name].replace_name
node.param2 = node.param2 + 20
if node.param2 == 21 then
node.param2 = 23
elseif node.param2 == 23 then
node.param2 = 21
end
minetest.set_node(pos, node)
end,
})
end
-- Stair/slab registration function.
-- Nodes will be called stairs:{stair,slab}_<subname>