forked from VoxeLibre/VoxeLibre
Make blocks breakable when not passing in node definition to mcl_autogroup.group_compatibility()
This commit is contained in:
parent
dbaf1239e1
commit
f26452898d
|
@ -355,6 +355,9 @@ local function overwrite()
|
|||
end
|
||||
end
|
||||
|
||||
-- Make sure compatibility groups are present for the below logic
|
||||
ndef.groups = newgroups
|
||||
|
||||
if (nname ~= "ignore" and ndef.diggable) then
|
||||
-- Automatically assign the "solid" group for solid nodes
|
||||
if (ndef.walkable == nil or ndef.walkable == true)
|
||||
|
@ -394,6 +397,11 @@ local function overwrite()
|
|||
-- group.
|
||||
newgroups["creative_breakable"] = 1
|
||||
|
||||
minetest.log(dump({
|
||||
groups = ndef.groups,
|
||||
newgroups = newgroups,
|
||||
}))
|
||||
|
||||
minetest.override_item(nname, {
|
||||
groups = newgroups
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue