Fixed collision and selection box for endcap nodes.

fixed typo in debug message.
This commit is contained in:
Michieal 2023-01-06 01:22:18 -05:00
parent e1cd16c971
commit cc24144bc6
2 changed files with 3 additions and 13 deletions

View File

@ -188,18 +188,8 @@ bamboo_top.drawtype = "plantlike_rooted" --"plantlike"
bamboo_top.special_tiles = {{name = "mcl_bamboo_endcap.png"}}
bamboo_top.nodebox = nil
bamboo_top.selection_box = {
type = "fixed",
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.selection_box = nil
bamboo_top.collision_box = nil
bamboo_top.on_place = function(itemstack, _, _)
-- Should never occur... but, if it does, then nix it.

View File

@ -95,7 +95,7 @@ function mcl_bamboo.grow_bamboo(pos, bonemeal_applied)
return false -- returning false means don't use up the bonemeal.
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)
grow_amount = rand(1, GROW_DOUBLE_CHANCE)
grow_amount = rand(1, GROW_DOUBLE_CHANCE) -- because yeah, not truly random, or even a good prng.