aboutsummaryrefslogtreecommitdiff
path: root/assets/manual.html.LyXconv/manual.html
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2019-07-16 17:26:53 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2019-07-16 17:26:53 +0200
commitdaba00b6a2edd57b2674168f05194c4ff80280e1 (patch)
treee61d8586952abda2e5c7b156271964acff93ab7e /assets/manual.html.LyXconv/manual.html
parent7a6740eb8c8e6902d1379273ba9dc7c4c2c14cdf (diff)
downloadadvtrains-daba00b6a2edd57b2674168f05194c4ff80280e1.tar.gz
advtrains-daba00b6a2edd57b2674168f05194c4ff80280e1.tar.bz2
advtrains-daba00b6a2edd57b2674168f05194c4ff80280e1.zip
Various small fixes
- Also do atomic operations on nodedb - no longer require Worldedit for at_sync_ndb - "overrun LZB 0 restriction" should now show where it happened.
Diffstat (limited to 'assets/manual.html.LyXconv/manual.html')
0 files changed, 0 insertions, 0 deletions
) end, luaautomation = { getstate = "off", setstate = function(pos, node, newstate) if newstate=="on" then advtrains.ndb.swap_node(pos, {name="mesecons_switch:mesecon_switch_on", param2=node.param2}) mesecon.receptor_on(pos) end end, }, }) minetest.override_item("mesecons_switch:mesecon_switch_on", { groups = { dig_immediate=2, save_in_nodedb=1, not_in_creative_inventory=1, }, on_rightclick = function (pos, node) advtrains.ndb.swap_node(pos, {name="mesecons_switch:mesecon_switch_off", param2=node.param2}) mesecon.receptor_off(pos) minetest.sound_play("mesecons_switch", {pos=pos}) end, on_updated_from_nodedb = function(pos, node) mesecon.receptor_on(pos) end, luaautomation = { getstate = "on", setstate = function(pos, node, newstate) if newstate=="off" then advtrains.ndb.swap_node(pos, {name="mesecons_switch:mesecon_switch_off", param2=node.param2}) mesecon.receptor_off(pos) end end, }, })