1
0
Fork 0

Patch mcl_stairs to work with pickblock

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

View File

@ -313,6 +313,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

@ -665,6 +665,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,
@ -689,6 +690,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