mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-25 02:10:30 +01:00
Rename technic.cables and make it private
Give it a more descriptive name. Previous use outside cables.lua isn't neccessary and gets removed.
This commit is contained in:
parent
137695ea67
commit
6b800758fb
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
local S = technic.getter
|
local S = technic.getter
|
||||||
|
|
||||||
technic.cables = {}
|
local cable_itstr_to_tier = {}
|
||||||
|
|
||||||
function technic.register_cable(tier, size)
|
function technic.register_cable(tier, size)
|
||||||
local ltier = string.lower(tier)
|
local ltier = string.lower(tier)
|
||||||
@ -14,7 +14,7 @@ function technic.register_cable(tier, size)
|
|||||||
for z2 = 0, 1 do
|
for z2 = 0, 1 do
|
||||||
local id = technic.get_cable_id({x1, x2, y1, y2, z1, z2})
|
local id = technic.get_cable_id({x1, x2, y1, y2, z1, z2})
|
||||||
|
|
||||||
technic.cables["technic:"..ltier.."_cable"..id] = tier
|
cable_itstr_to_tier["technic:"..ltier.."_cable"..id] = tier
|
||||||
|
|
||||||
local groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2}
|
local groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2}
|
||||||
if id ~= 0 then
|
if id ~= 0 then
|
||||||
@ -118,12 +118,12 @@ end
|
|||||||
|
|
||||||
|
|
||||||
function technic.is_tier_cable(name, tier)
|
function technic.is_tier_cable(name, tier)
|
||||||
return technic.cables[name] and technic.cables[name] == tier
|
return cable_itstr_to_tier[name] and cable_itstr_to_tier[name] == tier
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function technic.get_cable_tier(name)
|
function technic.get_cable_tier(name)
|
||||||
return technic.cables[name]
|
return cable_itstr_to_tier[name]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,8 +12,7 @@ technic.networks = {}
|
|||||||
|
|
||||||
|
|
||||||
function technic.register_tier(tier, description)
|
function technic.register_tier(tier, description)
|
||||||
technic.machines[tier] = {}
|
technic.machines[tier] = {}
|
||||||
technic.cables[tier] = {}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function technic.register_machine(tier, nodename, machine_type)
|
function technic.register_machine(tier, nodename, machine_type)
|
||||||
|
Loading…
Reference in New Issue
Block a user