(bugfix) Remove import of mcMMO-hook (use direct package reference

instead).
This commit is contained in:
asofold 2012-06-25 21:39:26 +02:00
parent a59efb80f9
commit a7df119a9c
2 changed files with 2 additions and 2 deletions

View File

@ -22,6 +22,7 @@ VERSION HISTORY
---------------------------
(0.1.0)
- (add) List to enable plugins: plugins.ensure-enable [Forces their events to be processed before NoCheatPlus gets them!]
- (bugfix) Remove import of mcMMO-hook (use direct package reference instead).
- (bugfix) Preserve order of entries in the lists read from the configuration.
(0.0.0) [initial version]

View File

@ -11,7 +11,6 @@ import java.util.logging.Logger;
import me.asofold.bukkit.cncp.config.compatlayer.CompatConfig;
import me.asofold.bukkit.cncp.config.compatlayer.NewConfig;
import me.asofold.bukkit.cncp.hooks.Hook;
import me.asofold.bukkit.cncp.hooks.mcmmo.HookmcMMO;
import me.asofold.bukkit.cncp.setttings.GroupHooks;
import me.asofold.bukkit.cncp.setttings.Settings;
import me.asofold.bukkit.cncp.utils.Utils;
@ -146,7 +145,7 @@ public class CompatNoCheatPlus extends JavaPlugin implements Listener {
*/
private void addAvailableHooks() {
try{
addHook(new HookmcMMO());
addHook(new me.asofold.bukkit.cncp.hooks.mcmmo.HookmcMMO());
}
catch (Throwable t){}
}