summaryrefslogtreecommitdiff
path: root/technic/machines
diff options
context:
space:
mode:
Diffstat (limited to 'technic/machines')
-rw-r--r--technic/machines/register/battery_box.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/technic/machines/register/battery_box.lua b/technic/machines/register/battery_box.lua
index a729a31..e26ee09 100644
--- a/technic/machines/register/battery_box.lua
+++ b/technic/machines/register/battery_box.lua
@@ -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 technic.is_tier_cable(below.tier, tier) 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