quoridor/src/main/java/cz/xelfi/quoridor/Board.java
changeset 219 d836818f5554
parent 179 c5fbddc4c590
child 237 38db4aae19d9
     1.1 --- a/quoridor/src/main/java/cz/xelfi/quoridor/Board.java	Thu Jan 07 22:51:17 2010 +0100
     1.2 +++ b/quoridor/src/main/java/cz/xelfi/quoridor/Board.java	Sun Jan 17 14:36:03 2010 +0100
     1.3 @@ -878,7 +878,7 @@
     1.4              for(int i=7; i<c.length;i+=2){
     1.5                  int f = Integer.parseInt(hashCode.substring(i, i+2),16);
     1.6                  Fence.Orientation o = Fence.Orientation.HORIZONTAL;
     1.7 -                if(f > 64){
     1.8 +                if(f >= 64){
     1.9                      o = Fence.Orientation.VERTICAL;
    1.10                      f -= 64;
    1.11                  }