Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
  • Loading branch information
yairm210 committed Dec 22, 2024
1 parent 2b0cc5c commit 4428d25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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") } }
Expand Down

0 comments on commit 4428d25

Please sign in to comment.