Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public void onEnable(){
  2. Bukkit.getLogger().info("BottleBets 1.0.0 has been activated");
  3. setupEconomy();
  4. bi = new BottleInventory(this);
  5. loadConfigManager();
  6. loadConfig();
  7.  
  8. }
  9.  
  10.  
  11. public void loadConfigManager(){
  12. conf = new ConfigManager();
  13. conf.setup();
  14. conf.savePlayers();
  15. conf.reloadPlayers();
  16.  
  17. }
  18.  
  19. public void loadConfig() {
  20. getConfig().options().copyDefaults(true);
  21. saveConfig();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement