added message contents to the messages #17

Closed
fkoppe wants to merge 27 commits from dev/client_beck into dev/client_koppe
Showing only changes of commit f69a2a9fda - Show all commits

View File

@@ -136,4 +136,18 @@ public int getIndexInHome(Piece piece) {
}
return -1;
}
/**
* This method returns the homeNodes
*
* @return the homeNodes
*/
public boolean hasPieceInWaitingArea() {
for (Piece piece : waitingArea) {
if (piece != null) {
return true;
}
}
return false;
}
}