Funktion zum Prüfen des Spielerlevels hinzugefügt
This commit is contained in:
@@ -18,7 +18,7 @@ public class Texturenpakete {
|
||||
TexturenpaketListe = new ArrayList<Texturenpaket>();
|
||||
|
||||
//Hinzufügen eines Internen Texturenpaketes
|
||||
TexturenpaketListe.add(new TexturenpaketIntern("/img/texturen/standart", "JauJau Standart Texturen Französisch", 0));
|
||||
TexturenpaketListe.add(new TexturenpaketIntern("/img/texturen/standart", "JauJau Französisch", 0));
|
||||
|
||||
//Internes Texturenpaket als Aktiv festlegen
|
||||
setAktivesPaket(0);
|
||||
@@ -119,4 +119,16 @@ public class Texturenpakete {
|
||||
return Texturen[32];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Prüft ob mit dem Aktuellen level das akteulle Texturenpaket genutzet werden kann
|
||||
* Wenn das nicht zutrifft wird das erste Standart Paket genutzt
|
||||
* @param Level des aktuellen Spielers
|
||||
*/
|
||||
public void pruefeLevel(int Level) {
|
||||
if(TexturenpaketListe.get(AktivesPaket).getLevel() > Level) {
|
||||
setAktivesPaket(0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user