Revert "abc"

This reverts commit 2f7c1dc2aa.
This commit is contained in:
GordonDaFreeman 2017-09-24 23:13:50 +02:00
parent 2f7c1dc2aa
commit 0c79ef9b7e
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();
b.s.takeBall(auswärtsteam.spieler[9]);
auswärtsteam.spieler[9].takeBall(b.s);
heimteam.setPositions(true);
auswärtsteam.setPositions(false);
}else{
auswärtsteam.tore++;
System.out.println("Auswärtsteam punktet!");
ballWechsel();
b.s.takeBall(heimteam.spieler[9]);
heimteam.spieler[9].takeBall(b.s);
heimteam.setPositions(true);
auswärtsteam.setPositions(false);
}