소스 검색

add current bid to json instance

master
flavis 6 년 전
부모
커밋
696c76887e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/Skat/AI/Online.hs

+ 1
- 1
src/Skat/AI/Online.hs 파일 보기

@@ -158,7 +158,7 @@ instance ToJSON Query where
object ["query" .= ("start_game" :: String), "trumps" .= show trumps,
"hand" .= toInt handNo, "single" .= toInt sglPlayer ]
toJSON (BidQuery hand bid) =
object ["query" .= ("bid" :: String), "whom" .= show hand ]
object ["query" .= ("bid" :: String), "whom" .= show hand, "current" .= bid]
toJSON (BidResponseQuery hand bid) =
object ["query" .= ("bid_response" :: String), "from" .= show hand ]
toJSON (AskHandQuery) =


불러오는 중...
취소
저장