/src/me/damo1995/noenderdragon/NoEnderDragon.java

https://bitbucket.org/dtaylor1984/noenderdragon · Java · 41 lines · 29 code · 11 blank · 1 comment · 4 complexity · 4a0b67485c45de81f546143dd121e416 MD5 · raw file

  1. package me.damo1995.noenderdragon;
  2. import java.io.File;
  3. import java.util.logging.Level;
  4. import java.util.logging.Logger;
  5. import org.bukkit.plugin.java.JavaPlugin;
  6. public class NoEnderDragon extends JavaPlugin {
  7. public final Logger log = Logger.getLogger("Minecraft");
  8. //public DragonListener dragonListener = new DragonListener(this);
  9. public String pluginDirPath;
  10. public File configFile;
  11. public NoEnderDragonConfig config;
  12. public void onEnable()
  13. {
  14. getServer().getPluginManager().registerEvents(new DragonListener(this), this);
  15. this.pluginDirPath = this.getDataFolder().getAbsolutePath();
  16. this.configFile = new File(this.pluginDirPath + File.separator + "config.yml");
  17. this.config = new NoEnderDragonConfig(this.configFile);
  18. if (this.config.getBoolean("blockDamage") == false)
  19. this.log.log(Level.INFO, "Block Damage is disabled!");
  20. else
  21. this.log.log(Level.INFO, "Block Damage is enabled!");
  22. if (this.config.getBoolean("spawnDragon") == false)
  23. this.log.log(Level.INFO, "Dragon spawning is disabled!");
  24. else
  25. this.log.log(Level.INFO, "Dragon spawning is enabled!");
  26. }
  27. public void onDisable()
  28. {
  29. }
  30. }