Add mod load log and buildtest compatibility

This commit is contained in:
minermoder27 2014-03-20 09:54:39 +13:00
parent 28b4ea0a70
commit 4b3a94274b
2 changed files with 15 additions and 2 deletions

@ -1 +1,2 @@
default
default
buildtest?

@ -1,5 +1,15 @@
dofile(minetest.get_modpath("equivalent_exchange").."/emcs.lua")
if minetest.get_modpath("buildtest")~=nil then
buildtest.canPumpInto["equivalent_exchange:condenser"] = {
"from",
on_send = function(pos)
equivalent_exchange.convert(pos)
end
}
buildtest.pumps.pulls["equivalent_exchange:condenser"] = {"from"}
end
equivalent_exchange = {
convert = function(pos)
local meta = minetest.get_meta(pos)
@ -90,4 +100,6 @@ minetest.register_node("equivalent_exchange:condenser", {
return count
end,
emc = 500
})
})
print("[equivalent_exchange] Mod loaded!")