mirror of
https://github.com/yairm210/Unciv.git
synced 2025-08-01 15:49:46 +07:00
Allow games with zero researched techs to be 'before' the Ancient Era (#10309)
This commit is contained in:
@ -182,7 +182,7 @@ class TechPickerScreen(
|
||||
if (rowIndex == 0)
|
||||
table.padTop(7f)
|
||||
|
||||
if (erasNamesToColumns[civTech.era.name]!!.contains(columnIndex))
|
||||
if (erasNamesToColumns[civTech.era.name]?.contains(columnIndex) == true)
|
||||
table.background = skinStrings.getUiBackground("TechPickerScreen/Background", tintColor = queuedTechColor.darken(0.5f))
|
||||
|
||||
if (tech == null) {
|
||||
|
Reference in New Issue
Block a user