MikeZeen Posted February 22, 2013 Share Posted February 22, 2013 Hallo, Ich bekomme bei Eclipse irgendwie einen Fehler, weiss aber nicht wie er entsteht oder was er bedeutet Fehler lautet : The field MemoryConfiguration.options is not visible Und wir mir hier beim wort options angezeigt : this.getConfig().addDefault("Author", new String[] {"MikeZeen"}); this.getConfig().addDefault("Version", new String[] {"1.0"}); this.getConfig().options.copyDefaults(true); this.saveConfig(); lG MikeZeen Link to comment Share on other sites More sharing options...
Arkanus Posted February 22, 2013 Share Posted February 22, 2013 Du sprichst bei this.getConfig().options.copyDefaults(true); mit dem options die Variable an, die wahrschinlich private ist, d.h. nicht sichtbar. Wenn du auf options zugreifen willst, musst du auf die Methode(Getter), d.h. options() zugreifen. Das ganze würde dann so Aussehen: this.getConfig().options().copyDefaults(true); Also eig nur Klammern hinter options vergessen Link to comment Share on other sites More sharing options...
MikeZeen Posted February 22, 2013 Author Share Posted February 22, 2013 Oh danke^^ hat jetzt geklappt Eine Frage noch : Wie mache ich das dass es nachher in der Config nicht so : Author: - MikeZeen Sonder : Author: MikeZeen heisst ? lG MikeZeen Link to comment Share on other sites More sharing options...
Arkanus Posted February 22, 2013 Share Posted February 22, 2013 Mach einfach das Array weg. Also ungefähr so: this.getConfig().addDefault("Author","MikeZeen"); Sollt so eig klappen, wenn man Arrays angibt werden automatisch neue Punkte angelegt. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now