From 300f9c33cccc3d192d47656f38d286d0cf58588d Mon Sep 17 00:00:00 2001 From: snowleo Date: Tue, 10 May 2011 21:14:38 +0000 Subject: Reload Users and Protect on /essentials reload. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1411 e251c2fe-e539-e718-e476-b85c1f46cddb --- .../src/com/earth2me/essentials/protect/EssentialsProtect.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'EssentialsProtect/src') diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java index 337b2c107..d1fbb786a 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java @@ -1,6 +1,7 @@ package com.earth2me.essentials.protect; import com.earth2me.essentials.Essentials; +import com.earth2me.essentials.IConf; import com.earth2me.essentials.User; import com.earth2me.essentials.Util; import java.util.ArrayList; @@ -16,7 +17,7 @@ import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; -public class EssentialsProtect extends JavaPlugin +public class EssentialsProtect extends JavaPlugin implements IConf { private EssentialsProtectBlockListener blockListener = null; private EssentialsProtectPlayerListener playerListener = null; @@ -76,7 +77,8 @@ public class EssentialsProtect extends JavaPlugin //serverlistener pm.registerEvent(Type.PLUGIN_ENABLE, serverListener, Priority.Highest, this); - loadSettings(); + reloadConfig(); + Essentials.getStatic().addReloadListener(this); if (!this.getDescription().getVersion().equals(Essentials.getStatic().getDescription().getVersion())) { logger.log(Level.WARNING, Util.i18n("versionMismatchAll")); } @@ -108,7 +110,7 @@ public class EssentialsProtect extends JavaPlugin onBreakAlert = null; } - public static void loadSettings() + public void reloadConfig() { dataSettings = Essentials.getStatic().getSettings().getEpDBSettings(); genSettings = Essentials.getStatic().getSettings().getEpSettings(); -- cgit v1.2.3