forked from minetest-mods/technic
Generalize check for cable below battery box
This commit is contained in:
parent
06abe11dd0
commit
fc2f6d8976
|
@ -136,8 +136,7 @@ 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"
|
||||
and not string.find(below.name, "technic:"..ltier.."_cable_plate") then
|
||||
if not technic.is_tier_cable(below.name, tier) then
|
||||
meta:set_string("infotext", S("%s Battery Box Has No Network"):format(tier))
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user