Respond with e5 if initial move was given else e4
This commit is contained in:
parent
8347bf0cbc
commit
da5f67df46
10
main.go
10
main.go
|
@ -147,9 +147,13 @@ func handleGameStart(req *sn.Item) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// reply with algebraic notation, image and info
|
// reply with algebraic notation, image and info
|
||||||
info := "_A new chess game has been started!_\n\n" +
|
infoMove := "e4"
|
||||||
"_Reply with a move like `d5` to continue the game. " +
|
if len(b.Moves) > 0 {
|
||||||
"See [here](https://stacker.news/chess#how-to-continue) for details._"
|
infoMove = "e5"
|
||||||
|
}
|
||||||
|
info := fmt.Sprintf("_A new chess game has been started!_\n\n"+
|
||||||
|
"_Reply with a move like `%s` to continue the game. "+
|
||||||
|
"See [here](https://stacker.news/chess#how-to-continue) for details._", infoMove)
|
||||||
res = strings.Trim(fmt.Sprintf("%s\n\n%s\n\n%s", b.AlgebraicNotation(), imgUrl, info), " ")
|
res = strings.Trim(fmt.Sprintf("%s\n\n%s\n\n%s", b.AlgebraicNotation(), imgUrl, info), " ")
|
||||||
if _, err = createComment(req.Id, res); err != nil {
|
if _, err = createComment(req.Id, res); err != nil {
|
||||||
return fmt.Errorf("failed to reply to item %d: %v\n", req.Id, err)
|
return fmt.Errorf("failed to reply to item %d: %v\n", req.Id, err)
|
||||||
|
|
Loading…
Reference in New Issue