fixed errors in calculateWinner

This commit is contained in:
Leonardo Brandenberger 2022-03-18 11:02:53 +01:00
parent 74a83e790a
commit 268506a084
1 changed files with 2 additions and 2 deletions

View File

@ -283,7 +283,7 @@ public class Game implements GameSpecification {
if(start.getY() < finish.getY()) { if(start.getY() < finish.getY()) {
track.getCar(carIndex).increaseWinPoints(); track.getCar(carIndex).increaseWinPoints();
} }
else if(start.getY() < finish.getY()) { else if(start.getY() > finish.getY()) {
track.getCar(carIndex).deductWinPoints(); track.getCar(carIndex).deductWinPoints();
} }
break; break;
@ -299,7 +299,7 @@ public class Game implements GameSpecification {
if(start.getX() < finish.getX()){ if(start.getX() < finish.getX()){
track.getCar(carIndex).increaseWinPoints(); track.getCar(carIndex).increaseWinPoints();
} }
else if (start.getX() < finish.getX()){ else if (start.getX() > finish.getX()){
track.getCar(carIndex).deductWinPoints(); track.getCar(carIndex).deductWinPoints();
} }
break; break;