diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-21 22:34:38 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-21 22:34:38 -0700 |
commit | 6fdd5565ea5466b11d74dc9d5a874078fbe91a74 (patch) | |
tree | 032b9da2dd7eeb6ac8e454493fccc0d797f8251b /node_controllers.lua | |
parent | ba3cacbb8dadcbfa607fba765fdc832aff247012 (diff) |
Add a note to builder docs about builders trying to build to the same space simultaneously.
Diffstat (limited to 'node_controllers.lua')
-rw-r--r-- | node_controllers.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/node_controllers.lua b/node_controllers.lua index 518e97e..ac51fc7 100644 --- a/node_controllers.lua +++ b/node_controllers.lua @@ -13,7 +13,7 @@ local controller_nodebox ={ -- Master controller. Most complicated part of the whole system. Determines which direction a digtron moves and triggers all of its component parts. minetest.register_node("digtron:controller", { - description = "Digtron Control Unit", + description = "Digtron Control Module", _doc_items_longdesc = digtron.doc.controller_longdesc, _doc_items_usagehelp = digtron.doc.controller_usagehelp, groups = {cracky = 3, oddly_breakable_by_hand = 3, digtron = 1}, @@ -150,7 +150,7 @@ digtron.auto_cycle = function(pos) end minetest.register_node("digtron:auto_controller", { - description = "Digtron Automatic Control Unit", + description = "Digtron Automatic Control Module", _doc_items_longdesc = digtron.doc.auto_controller_longdesc, _doc_items_usagehelp = digtron.doc.auto_controller_usagehelp, groups = {cracky = 3, oddly_breakable_by_hand = 3, digtron = 1}, @@ -256,7 +256,7 @@ minetest.register_node("digtron:auto_controller", { -- A much simplified control unit that only moves the digtron, and doesn't trigger the diggers or builders. -- Handy for shoving a digtron to the side if it's been built a bit off. minetest.register_node("digtron:pusher", { - description = "Digtron Pusher Unit", + description = "Digtron Pusher Module", _doc_items_longdesc = digtron.doc.pusher_longdesc, _doc_items_usagehelp = digtron.doc.pusher_usagehelp, groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, |