merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit 3a02edb944 - Show all commits

View File

@@ -39,7 +39,7 @@ public PlayerData(Color color) {
waitingArea = new Piece[Resources.MAX_PIECES]; waitingArea = new Piece[Resources.MAX_PIECES];
for (int i = 0; i < Resources.MAX_PIECES; i++) { for (int i = 0; i < Resources.MAX_PIECES; i++) {
homeNodes[i] = new HomeNode(); homeNodes[i] = new HomeNode();
pieces[i] = new Piece(color, PieceState.WAITING, i); pieces[i] = new Piece(color, PieceState.WAITING);
waitingArea[i] = pieces[i]; waitingArea[i] = pieces[i];
} }
} }