Spielen nur mit Spieler auswahl möglich

This commit is contained in:
ekresse
2021-01-12 09:36:52 +01:00
parent 48ce30807f
commit a504e7e449

View File

@@ -173,8 +173,13 @@ public class GUI extends JFrame{
gamelabel.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
aktuellesSpiel = new Spiel(Dashboard_GUI, speicherung);
System.out.println("GUI: Spiel GUI geöffnet");
Dashboard_GUI.showgame(aktuellesSpiel);
if(speicherung.getSpieler() == "") {
System.out.println("GUI: Kein Spieler gesetzt");
}else{
System.out.println("GUI: Spiel GUI geöffnet");
Dashboard_GUI.showgame(aktuellesSpiel);
}
}
});