mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-20 19:56:51 +01:00
undo
This commit is contained in:
parent
2b0cc5cf90
commit
4428d25bb5
|
|
@ -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") } }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user