Fix stack division with moreblocks items

This commit is contained in:
Sys Quatre 2020-06-18 00:20:24 +02:00
parent be4df6fc88
commit 042d2867f7
1 changed files with 2 additions and 0 deletions

View File

@ -128,11 +128,13 @@ if coloredwood.enable_stairsplus then
shape = string.sub(i.name, 23)
end
local s1, s2 = is_stairsplus(i.name, false)
minetest.override_item(i.name, {
groups = groups2,
paramtype2 = "colorfacedir",
palette = "unifieddyes_palette_greys.png",
airbrush_replacement_node = "coloredwood:"..class.."_wood_grey_"..shape
drop = "moreblocks:"..s1.."_wood"..s2 -- NALC: Fix stack division with moreblocks
})
end
end