diff --git a/src/de/jaujau/gui/texturenauswaehlen_GUI.java b/src/de/jaujau/gui/texturenauswaehlen_GUI.java index a005893..4319eca 100644 --- a/src/de/jaujau/gui/texturenauswaehlen_GUI.java +++ b/src/de/jaujau/gui/texturenauswaehlen_GUI.java @@ -13,6 +13,7 @@ import javax.swing.JPanel; import javax.swing.SwingConstants; import javax.swing.border.EmptyBorder; +import de.jaujau.daten.Spielerverwaltung; import de.jaujau.daten.Texturenpakete; import javax.swing.JComboBox; import javax.swing.JFileChooser; @@ -30,16 +31,18 @@ public class texturenauswaehlen_GUI extends JFrame{ private JComboBox comboBox; private JLabel vorschaubild; private JButton speichern, hinzufuegen, schliessen; + private Spielerverwaltung spielerverwaltung; /** * Konstruktor fpr das Fenster * @param texturenpakete */ - public texturenauswaehlen_GUI (Texturenpakete texturenpakete) { + public texturenauswaehlen_GUI (Texturenpakete texturenpakete, Spielerverwaltung spieler) { pakete = texturenpakete; erstelleFenster(); aktualisiereInhalt(); + spielerverwaltung = spieler; } @@ -130,7 +133,10 @@ public class texturenauswaehlen_GUI extends JFrame{ * Speichert die Auswahl des akutellen Paketes */ private void speichern() { -// if(spielerlevel >= pakete.getLevel(comboBox.getSelectedIndex())) { +// Austauschen sobalt Spielerverwaltung fertig +// if(spieler.getLevel() >= pakete.getLevel(comboBox.getSelectedIndex())) { +// pakete.setAktivesPaket(comboBox.getSelectedIndex()); +// aktualisiereBild(); // // } pakete.setAktivesPaket(comboBox.getSelectedIndex()); @@ -139,7 +145,7 @@ public class texturenauswaehlen_GUI extends JFrame{ /** - * Aktualaiset die Inhalte der ComboBox + * Aktualisiert die Inhalte der ComboBox */ private void aktualisiereInhalt() { comboBox.removeAllItems();