[Michieal] 83bc60722d Begin: make bamboo dig-able by Pistons for Farm Creation.
[Michieal] 449cbdb330 Make Bamboo & Bamboo items not sticky for pistons.
[Michieal] a44566f863 hijack the ABM to check for orphaned bamboo nodes.
[Michieal] 5dff9e1994 Fixed the ABM situation so that now bamboo "breaks" when pushed by pistons.
Probably not the most elegant, but hey. It works.
[Michieal] 76507025d9 Cleaned up the global function to match the current ABM.
[Michieal] dfa849e19a Merge branch 'master' into Bamboo-Piston-Dig
[Michieal] a5bdc8a166 fix bamboo mosaic recipe.
[Michieal] 14383d6c6f update mod.conf to use optional depends mesecons_mvps
[Michieal] f81d530912 Update init.lua to register dropper callback.
This enables the feature of unsticky pistons. This allows
for some nodes to be unpullable, but otherwise pushable or diggable.
A certain selection of nodes that can never be moved.
And, stops certain entities from being pushed if they shouldn't move.
Along with this change; I've also updated the rules regarding
pushing, and pulling of nodes & objects to be more accurate to MC.
Now allowing for more complex redstone circuits to be built.
The daylight detector code used get_node_light(), which detects both
natural and artificial light. This patch improves the code to use
get_natural_light(), which was introduced with Minetest 5.4.0.
Redstone comparators have two modes, comparison mode & subtraction mode.
Before this patch, the functions to turn comparators on or off attempted
to swap nodes with comparators in the same mode, but failed to determine
the correct replacement node, if the existing node was not a comparator.
When a comparator in an on state (e.g. powered by a filled cauldron) was
flooded, the flooding dropped the comparator and replaced the comparator
node that was to be swapped out with air, which lead to a server crash.
This patch changes the functions that turn comparators on or off so they
only swap existing nodes with comparators in the same mode if the name
of the replacement node can be determined – i.e. if it is not nil.