diff --git a/core/src/com/unciv/ui/components/tilegroups/TileSetStrings.kt b/core/src/com/unciv/ui/components/tilegroups/TileSetStrings.kt index 57e7ba33fa..349f4a2d3a 100644 --- a/core/src/com/unciv/ui/components/tilegroups/TileSetStrings.kt +++ b/core/src/com/unciv/ui/components/tilegroups/TileSetStrings.kt @@ -54,7 +54,7 @@ class TileSetStrings( // These need to be by lazy since the orFallback expects a tileset, which it may not get. val hexagon: String by lazy { orFallback { tileSetLocation + "Hexagon"} } - val hexagonList = listOf(hexagon) + val hexagonList by lazy { listOf(hexagon) } // since it's orFallback, needs to be lazy val crosshatchHexagon by lazy { orFallback { tileSetLocation + "CrosshatchHexagon" } } val unexploredTile by lazy { orFallback { tileSetLocation + "UnexploredTile" } } val crosshair by lazy { orFallback { getString(tileSetLocation, "Crosshair") } }