From a504e7e4494898d98a56746ce7bb5207b8b9b5eb Mon Sep 17 00:00:00 2001 From: ekresse Date: Tue, 12 Jan 2021 09:36:52 +0100 Subject: [PATCH] =?UTF-8?q?Spielen=20nur=20mit=20Spieler=20auswahl=20m?= =?UTF-8?q?=C3=B6glich?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/de/jaujau/gui/GUI.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/de/jaujau/gui/GUI.java b/src/de/jaujau/gui/GUI.java index cbc8cfe..b2b1117 100644 --- a/src/de/jaujau/gui/GUI.java +++ b/src/de/jaujau/gui/GUI.java @@ -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); + } + } });