I upped both lua and database logs for a broader view.
I think the problem is here:
lua.log
Database.log
Edit: the line 419 in the mentioned lua file is:
Code:
-------------------------------------------------
-- find the range of columns that each era takes
-------------------------------------------------
for tech in GameInfo.Technologies() do
local eraID = GameInfoTypes[tech.Era]
local eraColumn = g_eraColumns[eraID]
if not eraColumn then
[B][COLOR="Blue"]g_eraColumns[eraID] = { minGridX = tech.GridX, maxGridX = tech.GridX, researched = false }[/COLOR][/B]
else
if tech.GridX < eraColumn.minGridX then
eraColumn.minGridX = tech.GridX
end
if tech.GridX > eraColumn.maxGridX then
eraColumn.maxGridX = tech.GridX
end
end
end