Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. private void registerFile() {
  2. file = new File(getDataFolder(), "messages.yml");
  3. fileConfig = YamlConfiguration.loadConfiguration(file);
  4. saveFile();
  5. }
  6.  
  7. public void saveFile() {
  8. try {
  9. fileConfig.save(file);
  10. } catch (IOException e) {
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement