Make batteries only charge/discharge from the bottom

(they were already supposed to but would leech charge from sideways neighbors too)
This commit is contained in:
Vanessa Ezekowitz 2017-04-12 20:21:20 -04:00
parent 14e0c4c48c
commit 33455328bd
1 changed files with 7 additions and 0 deletions

View File

@ -133,7 +133,14 @@ function technic.register_battery_box(data)
end
local run = function(pos, node)
local below = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
local meta = minetest.get_meta(pos)
if below.name ~= "technic:"..ltier.."_cable" then
meta:set_string("infotext", S("%s Battery Box Has No Network"):format(tier))
return
end
local eu_input = meta:get_int(tier.."_EU_input")
local current_charge = meta:get_int("internal_EU_charge")