summaryrefslogtreecommitdiff
path: root/sw-ui-kt/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'sw-ui-kt/src/main')
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
index d86b8559..837c4db6 100644
--- a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
@@ -13,7 +13,7 @@ typealias SwSagaContext = SagaContext<SwState, RAction, WrapperAction>
suspend fun SwSagaContext.rootSaga() {
val action = next<RequestChooseName>()
- val session = SevenWondersClient().connect("ws://localhost:8000")
+ val session = SevenWondersClient().connect("http://localhost:8000")
coroutineScope {
launch { gameBrowserSaga(session) }
bgstack15