Send new move to the server.

This commit is contained in:
Danila Fedorin 2018-05-25 10:51:38 -07:00
parent b52b16e5df
commit 0283e060e4
1 changed files with 1 additions and 1 deletions

2
Go.elm
View File

@ -32,7 +32,7 @@ update : Msg -> Model -> (Model, Cmd Msg)
update msg model = case msg of
Place c -> case verify c model of
Nothing -> ( { model | error = Just "Can't place piece" }, Cmd.none)
Just c -> ( { model | board = c::model.board }, Cmd.none)
Just c -> ( { model | board = c::model.board }, sendMove model c)
Update s -> case decodeUpdatestring s of
Ok (c, xs) -> ( { model | board = xs, currentColor = Just c }, Cmd.none)
Err s -> ( { model | error = Just "Can't parse server response" }, Cmd.none)