Show better warning for iConomy. The loading problem still exists.

This commit is contained in:
snowleo 2011-06-25 14:19:56 +02:00
parent ed06b29dd7
commit 2b8d5a09a2

View File

@ -2,6 +2,8 @@ package com.earth2me.essentials.register.payment;
import java.util.HashSet;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.plugin.Plugin;
import org.bukkit.plugin.PluginManager;
@ -68,7 +70,8 @@ public class Methods {
if(!plugin.isEnabled()) {
this.self = true;
manager.enablePlugin(plugin);
Logger.getLogger("Minecraft").log(Level.SEVERE, name + " Plugin was found, but not enabled before Essentials. Read the Essentials thread for help.");
//manager.enablePlugin(plugin);
}
if(plugin == null) continue;