From 3c3869969d0cbc0f77dd90309ec0a62cc6c92bc7 Mon Sep 17 00:00:00 2001 From: TheSaminator Date: Mon, 20 Jun 2022 15:15:47 -0400 Subject: [PATCH] Fix labels --- src/jsMain/kotlin/net/starshipfights/game/popup.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jsMain/kotlin/net/starshipfights/game/popup.kt b/src/jsMain/kotlin/net/starshipfights/game/popup.kt index 4a94530..5dd7619 100644 --- a/src/jsMain/kotlin/net/starshipfights/game/popup.kt +++ b/src/jsMain/kotlin/net/starshipfights/game/popup.kt @@ -143,7 +143,7 @@ sealed class Popup { } } button { - +"Host Competitive Battle" + +"Host Competitive (1v1) Battle" onClickFunction = { e -> e.preventDefault() @@ -151,7 +151,7 @@ sealed class Popup { } } button { - +"Join Competitive Battle" + +"Join Competitive (1v1) Battle" onClickFunction = { e -> e.preventDefault() @@ -159,7 +159,7 @@ sealed class Popup { } } button { - +"Host Cooperative Battle" + +"Host Cooperative (2v1) Battle" onClickFunction = { e -> e.preventDefault() @@ -167,7 +167,7 @@ sealed class Popup { } } button { - +"Join Cooperative Battle" + +"Join Cooperative (2v1) Battle" onClickFunction = { e -> e.preventDefault() -- 2.25.1