diff --git a/ProtocolLib/src/main/java/com/comphenix/protocol/ProtocolLibrary.java b/ProtocolLib/src/main/java/com/comphenix/protocol/ProtocolLibrary.java index e9c887c4..2d753368 100644 --- a/ProtocolLib/src/main/java/com/comphenix/protocol/ProtocolLibrary.java +++ b/ProtocolLib/src/main/java/com/comphenix/protocol/ProtocolLibrary.java @@ -240,9 +240,9 @@ public class ProtocolLibrary extends JavaPlugin { if (!config.getIgnoreVersionCheck().equals(current.toString())) { // We'll just warn the user for now if (current.compareTo(minimum) < 0) - reporter.reportWarning(this, "Version " + current + " is lower than the minimum " + minimum); + logger.warning("Version " + current + " is lower than the minimum " + minimum); if (current.compareTo(maximum) > 0) - reporter.reportWarning(this, "Version " + current + " has not yet been tested! Proceed with caution."); + logger.warning("Version " + current + " has not yet been tested! Proceed with caution."); } } catch (Exception e) { reporter.reportWarning(this, "Unable to retrieve current Minecraft version.", e); diff --git a/ProtocolLib/src/main/resources/plugin.yml b/ProtocolLib/src/main/resources/plugin.yml index f56352fe..84bff7e3 100644 --- a/ProtocolLib/src/main/resources/plugin.yml +++ b/ProtocolLib/src/main/resources/plugin.yml @@ -3,7 +3,7 @@ version: 1.8.0-SNAPSHOT description: Provides read/write access to the Minecraft protocol. author: Comphenix website: http://www.comphenix.net/ProtocolLib - +load: startup main: com.comphenix.protocol.ProtocolLibrary database: false