webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/Games.java
changeset 131 19e81456eef2
parent 128 eba04a2569d0
child 162 c1bfbe98152b
     1.1 --- a/webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/Games.java	Sun Oct 18 21:33:27 2009 +0200
     1.2 +++ b/webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/Games.java	Sun Oct 25 14:24:58 2009 +0100
     1.3 @@ -276,7 +276,7 @@
     1.4                  throw new IOException("Missing white and black identification in " + f);
     1.5              }
     1.6              if (g == null) {
     1.7 -                GameId id = new GameId(f.getName(), white, black, new Date(f.lastModified()), new Date(f.lastModified()), GameStatus.whiteMove);
     1.8 +                GameId id = new GameId(f.getName(), white, black, new Date(f.lastModified()), new Date(f.lastModified()), GameStatus.whiteMove, 0);
     1.9                  g = new Game(id);
    1.10              }
    1.11              int hash = line.indexOf('#');