From c2aae8c2ebe273dcbb9252414a80ad880aa6d72a Mon Sep 17 00:00:00 2001 From: Auxilor Date: Wed, 30 Jun 2021 14:31:57 +0100 Subject: [PATCH] Added direct download link to eco version checker --- eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java b/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java index be5d658c..72266d30 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java +++ b/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java @@ -356,7 +356,8 @@ public abstract class EcoPlugin extends JavaPlugin { if (!(runningVersion.compareTo(requiredVersion) > 0 || runningVersion.equals(requiredVersion))) { this.getLogger().severe("You are running an outdated version of eco!"); this.getLogger().severe("You must be on at least" + this.getMinimumEcoVersion()); - this.getLogger().severe("Download the newest version to use this plugin!"); + this.getLogger().severe("Download the newest version here:"); + this.getLogger().severe("https://polymart.org/download/773/recent/JSpprMspkuyecf5y1wQ2Jn8OoLQSQ_IW"); Bukkit.getPluginManager().disablePlugin(this); }