Skip to content

Commit

Permalink
Refix commit fbb39ca fixing issue #4
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDudie committed Apr 4, 2021
1 parent fbb39ca commit 8aefdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mc_bamboo/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ minetest.register_abm({
interval = 10.0,
chance = 4,
action = function(pos, node, active_object_count, active_object_count_wider)
grow_pos = {pos.x, pos,y + 1, pos,z}
grow_pos = {pos.x, pos.y + 1, pos.z}
minetest.set_node(grow_pos, {name = "mc_bamboo:bamboo"})
end
})

0 comments on commit 8aefdfd

Please sign in to comment.