added if condition to prevent crash
This commit is contained in:
parent
ac25d11648
commit
7d66a29af9
1 changed files with 9 additions and 8 deletions
|
@ -169,14 +169,15 @@ function find_following_techs(tech, break_con)
|
||||||
|
|
||||||
for i,v in pairs(data.raw.technology) do
|
for i,v in pairs(data.raw.technology) do
|
||||||
--i = techname, v = data.raw.technology[techname]
|
--i = techname, v = data.raw.technology[techname]
|
||||||
|
if data.raw.technology[i].prerequisites then
|
||||||
for j,w in ipairs(data.raw.technology[i].prerequisites) do
|
for j,w in ipairs(data.raw.technology[i].prerequisites) do
|
||||||
--prerequisites = {'el_energy_tech'}
|
--prerequisites = {'el_energy_tech'}
|
||||||
--j = index, w = techname
|
--j = index, w = techname
|
||||||
|
|
||||||
if w == tech then
|
if w == tech then
|
||||||
if not (i == break_con) then
|
if not (i == break_con) then
|
||||||
table.insert(return_table, i)
|
table.insert(return_table, i)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue