diff --git a/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt b/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt index 1c7989c..87a87cd 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt @@ -33,14 +33,14 @@ class StartView (private val grid: TileGrid, theme: ColorTheme = GameConfig.THEM // we align the button to the bottom center of our header .withAlignmentAround(header, ComponentAlignment.BOTTOM_CENTER) // its text is "Start!" - .withText("BEGIN!") + .withText("QUICK PLAY!") // we want a box and some shadow around it .withDecorations(box(), shadow()) .build() val configButton = Components.button() .withAlignmentAround(startButton, ComponentAlignment.BOTTOM_CENTER) - .withText("CONFIG") + .withText("PLAY") .withDecorations(box(), shadow()) .build()