/fr/tobast/bukkit/mechanicalfixes/MechanicalFixes.java

https://gitlab.com/mechanicalfixes/mechanicalfixes · Java · 68 lines · 23 code · 12 blank · 33 comment · 2 complexity · ff5406a93d5ba4e458d69b55607be579 MD5 · raw file

  1. /*
  2. * PROGRAM:
  3. * MechanicalFixes - bukkit plugin
  4. *
  5. * AUTHOR:
  6. * Théophile BASTIAN (a.k.a. Tobast)
  7. *
  8. * CONTACT & WEBSITE:
  9. * http://tobast.fr/ (contact feature included)
  10. * error-report@tobast.fr (error reporting only)
  11. *
  12. * SHORT DESCRIPTION:
  13. * See first license line.
  14. *
  15. * LICENSE:
  16. * MechanicalFixes is a Bukkit plugin fixing some mechanical things.
  17. * Copyright (C) 2012 Théophile BASTIAN
  18. *
  19. * This program is free software: you can redistribute it and/or modify
  20. * it under the terms of the GNU General Public License as published by
  21. * the Free Software Foundation, either version 3 of the License, or
  22. * (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program. If not, see http://www.gnu.org/licenses/gpl.txt.
  31. */
  32. package fr.tobast.bukkit.mechanicalfixes;
  33. import java.util.logging.Logger;
  34. import org.bukkit.plugin.java.JavaPlugin;
  35. import fr.tobast.bukkit.mechanicalfixes.DispenserReload;
  36. import fr.tobast.bukkit.mechanicalfixes.SPistonMultiple;
  37. public class MechanicalFixes extends JavaPlugin {
  38. Logger log=Logger.getLogger("Minecraft");
  39. public void onEnable() {
  40. loadConfig();
  41. if(getConfig().getBoolean("enable-dispenser-reload"))
  42. getServer().getPluginManager().registerEvents(new DispenserReload(), this);
  43. if(getConfig().getBoolean("enable-2spiston"))
  44. getServer().getPluginManager().registerEvents(new SPistonMultiple(this), this); // RELEASE
  45. // getServer().getPluginManager().registerEvents(new SPistonMultiple(this, log), this); // DEBUG
  46. }
  47. public void onDisable() {
  48. }
  49. public void loadConfig() {
  50. getConfig().options().copyDefaults(true);
  51. //def values
  52. getConfig().addDefault("enable-dispenser-reload", true);
  53. getConfig().addDefault("enable-2spiston", true);
  54. saveConfig();
  55. }
  56. }