Skip to content

Commit

Permalink
show current game status in PGN
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jul 17, 2014
1 parent adcddd8 commit cabf48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/format/pgn/model.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ case class Pgn(
override def toString = "%s\n\n%s %s".format(
tags mkString "\n",
turns mkString " ",
tags find (_.name == Tag.Result) map (_.value) filter ("*" !=) getOrElse ""
tags find (_.name == Tag.Result) map (_.value) getOrElse ""
).trim
}

Expand Down

0 comments on commit cabf48c

Please sign in to comment.