Commit 248d81c 1 parent ccc0cfd commit 248d81c Copy full SHA for 248d81c
File tree 1 file changed +2
-2
lines changed
src/main/scala/abalone/format/pgn
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ object Reader {
58
58
Replay .actionStrsWithEndTurn(actionStrs).foldLeft[Result ](Result .Complete (Replay (game))) {
59
59
case (Result .Complete (replay), (actionStr, endTurn)) =>
60
60
actionStr match {
61
- case Uci .Move .moveR(orig, dest, _ ) => {
61
+ case Uci .Move .moveR(orig, dest) => {
62
62
(Pos .fromKey(orig), Pos .fromKey(dest)) match {
63
63
case (Some (orig), Some (dest)) =>
64
64
Result .Complete (
@@ -75,7 +75,7 @@ object Reader {
75
75
Result .Incomplete (replay, s " Error making replay with move: ${actionStr}" )
76
76
}
77
77
}
78
- case _ =>
78
+ case _ =>
79
79
Result .Incomplete (replay, s " Error making replay with uci move: ${actionStr}" )
80
80
}
81
81
case (r : Result .Incomplete , _) => r
You can’t perform that action at this time.
0 commit comments