The code was failing to set the "placed" flag on empty rubber tree trunk
nodes because the after_place_node callback that does it would only be
called by the default on_place callback, which is overridden for that
node type. The code also fails to even attempt to set the flag on full
rubber tree trunk nodes. The technic mod no longer looks at this flag,
so remove the attempt to set it, rather than fix setting it.
sounds = default.node_sound_wood_defaults(),
paramtype2 = "facedir",
on_place = minetest.rotate_node,
- after_place_node = function(pos, placer, itemstack)
- local meta = minetest.get_meta(pos)
- meta:set_int("placed", 1)
- end
})
minetest.register_abm({