summaryrefslogtreecommitdiff
path: root/node_storage.lua
diff options
context:
space:
mode:
authorFaceDeer <derksenmobile@gmail.com>2017-01-13 01:17:05 -0700
committerFaceDeer <derksenmobile@gmail.com>2017-01-13 01:17:05 -0700
commit11ceefa358d2e9e056631d536a429a3a624f224a (patch)
tree2113a0b2a8a684d4c7b8c13c9aee6fb883cbfea4 /node_storage.lua
parent9da077c9efa5cc3f5b994c0064daa922efd465db (diff)
add compatibility with the hopper mod, via the API I just added over in a fork of the hopper mod. Hopefully this API will be merged.
Diffstat (limited to 'node_storage.lua')
-rw-r--r--node_storage.lua18
1 files changed, 17 insertions, 1 deletions
diff --git a/node_storage.lua b/node_storage.lua
index 3362258..86a3eff 100644
--- a/node_storage.lua
+++ b/node_storage.lua
@@ -230,5 +230,21 @@ minetest.register_node("digtron:combined_storage",
after_place_node = (function() if minetest.get_modpath("pipeworks") then return pipeworks.after_place end end)(),
after_dig_node = (function() if minetest.get_modpath("pipeworks") then return pipeworks.after_dig end end)()
-
})
+
+-- Hopper compatibility
+if minetest.get_modpath("hopper") and hopper ~= nil and hopper.add_source ~= nil and hopper.add_destination ~= nil then
+ hopper.add_source("hopper:hopper", "digtron:inventory", "main")
+ hopper.add_source("hopper:hopper", "digtron:fuelstore", "fuel")
+ hopper.add_source("hopper:hopper", "digtron:combined_storage", "main")
+ hopper.add_destination("hopper:hopper", "digtron:inventory", "main")
+ hopper.add_destination("hopper:hopper", "digtron:fuelstore", "fuel")
+ hopper.add_destination("hopper:hopper", "digtron:combined_storage", "main")
+
+ hopper.add_source("hopper:hopper_side", "digtron:inventory", "main")
+ hopper.add_source("hopper:hopper_side", "digtron:fuelstore", "fuel")
+ hopper.add_source("hopper:hopper_side", "digtron:combined_storage", "main")
+ hopper.add_destination("hopper:hopper_side", "digtron:inventory", "main")
+ hopper.add_destination("hopper:hopper_side", "digtron:fuelstore", "fuel")
+ hopper.add_destination("hopper:hopper_side", "digtron:combined_storage", "fuel")
+end