yet another fork update #9

Merged
chmodsayshello merged 760 commits from VoxeLibre/VoxeLibre:master into master 2023-03-26 20:27:31 +02:00
2 changed files with 3 additions and 13 deletions
Showing only changes of commit cc24144bc6 - Show all commits

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.