From c3f88bf7b0190690fc3a5767da7916c0c027a336 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Wed, 12 Jan 2022 11:23:01 +0000 Subject: [PATCH] Fixed updatechecker formatting --- eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java | 2 +- 1 file changed, 1 insertion(+), 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 3cd709e4..5349e516 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 @@ -327,7 +327,7 @@ public abstract class EcoPlugin extends JavaPlugin implements PluginLike { DefaultArtifactVersion mostRecentVersion = new DefaultArtifactVersion(version); if (!(currentVersion.compareTo(mostRecentVersion) > 0 || currentVersion.equals(mostRecentVersion))) { this.outdated = true; - this.getLogger().warning("&c " + this.getName() + " is out of date! (Version " + this.getDescription().getVersion() + ")"); + this.getLogger().warning("&c" + this.getName() + " is out of date! (Version " + this.getDescription().getVersion() + ")"); this.getLogger().warning("&cThe newest version is &f" + version); this.getLogger().warning("&cDownload the new version!"); }