Patch mcl_stairs to work with pickblock

This commit is contained in:
Mikita Wiśniewski 2024-07-31 21:08:52 +07:00
parent ffd01ae6c6
commit cb81a10eec
2 changed files with 3 additions and 0 deletions

View file

@ -325,6 +325,7 @@ function mcl_stairs.register_slab(subname, recipeitem, groups, images, descripti
topdef._doc_items_usagehelp = nil
topdef.drop = lower_slab
topdef._mcl_other_slab_half = lower_slab
topdef._vl_pickblock = lower_slab
function topdef.on_rotate(pos, node, user, mode, param2)
-- Flip slab
if mode == screwdriver.ROTATE_AXIS then

View file

@ -646,6 +646,7 @@ function mcl_stairs.cornerstair.add(name, stairtiles)
after_dig_node = function(pos, oldnode) after_dig_node(pos, oldnode) end,
_mcl_hardness = node_def._mcl_hardness,
on_rotate = false,
_vl_pickblock = name,
})
minetest.register_node(":"..name.."_inner", {
description = node_def.description,
@ -670,6 +671,7 @@ function mcl_stairs.cornerstair.add(name, stairtiles)
after_dig_node = function(pos, oldnode) after_dig_node(pos, oldnode) end,
_mcl_hardness = node_def._mcl_hardness,
on_rotate = false,
_vl_pickblock = name,
})
if minetest.get_modpath("doc") then