Game #23
@@ -197,9 +197,12 @@ public class Game implements GameSpecification {
|
||||
@Override
|
||||
public void switchToNextActiveCar() {
|
||||
do {
|
||||
if (currentCarIndex++ > track.getCarCount()) {
|
||||
if ((currentCarIndex + 1) == track.getCarCount()) {
|
||||
currentCarIndex = 0;
|
||||
}
|
||||
else {
|
||||
currentCarIndex ++;
|
||||
}
|
||||
} while (track.getCar(currentCarIndex).isCrashed());
|
||||
// TODO: evtl andere Kapselung
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user