TestMerge 3 #6

Merged
j23f0712 merged 5 commits from development into dev/test 2024-11-19 12:48:07 +01:00
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;
}
}