growing saplings can now replace living leaves.

This commit is contained in:
trans_soup 2023-10-19 15:28:26 +02:00
parent 3316dcba15
commit c3bff227aa
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ blockgame.register_increasing_abm({
-- grow out leaves to the sides.
local sides = blockgame.vector.get_sides_of(above)
for _, side in pairs(sides) do
blockgame.attempt_place(side, {name = leaves_growing})
blockgame.attempt_place(side, {name = leaves_growing}, {modname .. ":leaves_alive"})
end
end,
})