diff options
author | h-v-smacker <hans.von.smacker+github@gmail.com> | 2017-10-10 22:02:35 +0300 |
---|---|---|
committer | h-v-smacker <hans.von.smacker+github@gmail.com> | 2017-10-10 22:02:35 +0300 |
commit | 6290e57d8fde124647ec1cd74373217582f4ec86 (patch) | |
tree | d22294496193285738f330ab84e8bf9be6738e83 /nodes/node_storage.lua | |
parent | 19a0f193ad37ddf48741b93eb48aa9f973c7df55 (diff) |
Support for RE batteries for fuel
Diffstat (limited to 'nodes/node_storage.lua')
-rw-r--r-- | nodes/node_storage.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nodes/node_storage.lua b/nodes/node_storage.lua index 56d19aa..fccf28a 100644 --- a/nodes/node_storage.lua +++ b/nodes/node_storage.lua @@ -21,7 +21,7 @@ local inventory_formspec = minetest.register_node("digtron:inventory", { description = S("Digtron Inventory Storage"), _doc_items_longdesc = digtron.doc.inventory_longdesc, - _doc_items_usagehelp = digtron.doc.inventory_usagehelp, + _doc_items_usagehelp = digtron.doc.inventory_usagehelp, _digtron_formspec = inventory_formspec, groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 2, tubedevice = 1, tubedevice_receiver = 1}, drop = "digtron:inventory", @@ -92,7 +92,7 @@ local fuelstore_formspec = minetest.register_node("digtron:fuelstore", { description = S("Digtron Fuel Storage"), _doc_items_longdesc = digtron.doc.fuelstore_longdesc, - _doc_items_usagehelp = digtron.doc.fuelstore_usagehelp, + _doc_items_usagehelp = digtron.doc.fuelstore_usagehelp, _digtron_formspec = fuelstore_formspec, groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 5, tubedevice = 1, tubedevice_receiver = 1}, drop = "digtron:fuelstore", |