check for cable plate under battery also

This commit is contained in:
Vanessa Ezekowitz 2017-04-13 16:25:42 -04:00
parent 6b8011eba7
commit 06abe11dd0
1 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,8 @@ function technic.register_battery_box(data)
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
if below.name ~= "technic:"..ltier.."_cable"
and not string.find(below.name, "technic:"..ltier.."_cable_plate") then
meta:set_string("infotext", S("%s Battery Box Has No Network"):format(tier))
return
end