This commit is contained in:
GordonDaFreeman 2017-09-24 23:04:52 +02:00
parent 7a5736242d
commit 2f7c1dc2aa
1 changed files with 2 additions and 2 deletions

View File

@ -204,14 +204,14 @@ public class Spiel {
heimteam.tore++;
System.out.println("Heimteam punktet!");
ballWechsel();
auswärtsteam.spieler[9].takeBall(b.s);
b.s.takeBall(auswärtsteam.spieler[9]);
heimteam.setPositions(true);
auswärtsteam.setPositions(false);
}else{
auswärtsteam.tore++;
System.out.println("Auswärtsteam punktet!");
ballWechsel();
heimteam.spieler[9].takeBall(b.s);
b.s.takeBall(heimteam.spieler[9]);
heimteam.setPositions(true);
auswärtsteam.setPositions(false);
}