changed boatPositionController to also add velocity to the boat ordering shown in the side bar #story[447]

This commit is contained in:
Peter
2017-03-23 22:50:04 +13:00
parent 590ef557d3
commit 59a4a74a97
2 changed files with 5 additions and 3 deletions
@@ -39,7 +39,7 @@ public class BoatPositionController {
positionVbox.getChildren().removeAll();
for (Boat boat: boatOrder){
positionVbox.getChildren().add(new Text(boat.getTeamName()));
positionVbox.getChildren().add(new Text(boat.getTeamName() + " " + boat.getVelocity()));
}
}