forked from VoxeLibre/VoxeLibre
Fixed collision and selection box for endcap nodes.
fixed typo in debug message.
This commit is contained in:
parent
e1cd16c971
commit
cc24144bc6
|
@ -188,18 +188,8 @@ bamboo_top.drawtype = "plantlike_rooted" --"plantlike"
|
||||||
|
|
||||||
bamboo_top.special_tiles = {{name = "mcl_bamboo_endcap.png"}}
|
bamboo_top.special_tiles = {{name = "mcl_bamboo_endcap.png"}}
|
||||||
bamboo_top.nodebox = nil
|
bamboo_top.nodebox = nil
|
||||||
bamboo_top.selection_box = {
|
bamboo_top.selection_box = nil
|
||||||
type = "fixed",
|
bamboo_top.collision_box = nil
|
||||||
fixed = {
|
|
||||||
{-0.5, -0.5, -0.5, -0.05, 0.5, 0.5},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
bamboo_top.collision_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-0.5, -0.5, -0.5, 0.05, 0.5, 0.5},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bamboo_top.on_place = function(itemstack, _, _)
|
bamboo_top.on_place = function(itemstack, _, _)
|
||||||
-- Should never occur... but, if it does, then nix it.
|
-- Should never occur... but, if it does, then nix it.
|
||||||
|
|
|
@ -95,7 +95,7 @@ function mcl_bamboo.grow_bamboo(pos, bonemeal_applied)
|
||||||
return false -- returning false means don't use up the bonemeal.
|
return false -- returning false means don't use up the bonemeal.
|
||||||
end
|
end
|
||||||
|
|
||||||
mcl_bamboo.mcl_log("Grow bamboo; soil found: ")
|
mcl_bamboo.mcl_log("Grow bamboo; soil found. ")
|
||||||
local grow_amount = rand(1, GROW_DOUBLE_CHANCE)
|
local grow_amount = rand(1, GROW_DOUBLE_CHANCE)
|
||||||
grow_amount = rand(1, GROW_DOUBLE_CHANCE)
|
grow_amount = rand(1, GROW_DOUBLE_CHANCE)
|
||||||
grow_amount = rand(1, GROW_DOUBLE_CHANCE) -- because yeah, not truly random, or even a good prng.
|
grow_amount = rand(1, GROW_DOUBLE_CHANCE) -- because yeah, not truly random, or even a good prng.
|
||||||
|
|
Loading…
Reference in New Issue