diff --git a/common/src/main/java/us/myles/ViaVersion/ViaManagerImpl.java b/common/src/main/java/us/myles/ViaVersion/ViaManagerImpl.java index 849aa7362..ab5339d98 100644 --- a/common/src/main/java/us/myles/ViaVersion/ViaManagerImpl.java +++ b/common/src/main/java/us/myles/ViaVersion/ViaManagerImpl.java @@ -132,7 +132,7 @@ public class ViaManagerImpl implements ViaManager { platform.getLogger().warning("and if you're still unsure, feel free to join our Discord-Server for further assistance."); } else if (protocolVersion.highestSupportedVersion() <= ProtocolVersion.v1_12_2.getVersion()) { platform.getLogger().warning("This version of Minecraft is extremely outdated and support for it has reached its end of life. " - + "You will still be able to run Via on this version, but we are unlikely to provide any further fixes or help with problems specific to legacy versions. " + + "You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. " + "Please consider updating to give your players a better experience and to avoid issues that have long been fixed."); } } diff --git a/common/src/main/java/us/myles/ViaVersion/boss/CommonBoss.java b/common/src/main/java/us/myles/ViaVersion/boss/CommonBoss.java index ad313e518..e6ae06b35 100644 --- a/common/src/main/java/us/myles/ViaVersion/boss/CommonBoss.java +++ b/common/src/main/java/us/myles/ViaVersion/boss/CommonBoss.java @@ -43,7 +43,7 @@ public abstract class CommonBoss extends BossBar { public CommonBoss(String title, float health, BossColor color, BossStyle style) { Preconditions.checkNotNull(title, "Title cannot be null"); - Preconditions.checkArgument((health >= 0 && health <= 1), "Health must be between 0 and 1"); + Preconditions.checkArgument((health >= 0 && health <= 1), "Health must be between 0 and 1. Input: " + health); this.uuid = UUID.randomUUID(); this.title = title; @@ -65,7 +65,7 @@ public abstract class CommonBoss extends BossBar { @Override public BossBar setHealth(float health) { - Preconditions.checkArgument((health >= 0 && health <= 1), "Health must be between 0 and 1"); + Preconditions.checkArgument((health >= 0 && health <= 1), "Health must be between 0 and 1. Input: " + health); this.health = health; sendPacket(CommonBoss.UpdateAction.UPDATE_HEALTH); return this; diff --git a/common/src/main/java/us/myles/ViaVersion/update/UpdateUtil.java b/common/src/main/java/us/myles/ViaVersion/update/UpdateUtil.java index 1fca4456c..02bd0e3ad 100644 --- a/common/src/main/java/us/myles/ViaVersion/update/UpdateUtil.java +++ b/common/src/main/java/us/myles/ViaVersion/update/UpdateUtil.java @@ -78,12 +78,12 @@ public class UpdateUtil { } Version newest = new Version(newestString); if (current.compareTo(newest) < 0) - return "There is a newer version available: " + newest.toString() + ", you're on: " + current.toString(); + return "There is a newer plugin version available: " + newest.toString() + ", you're on: " + current.toString(); else if (console && current.compareTo(newest) != 0) { if (current.getTag().toLowerCase(Locale.ROOT).startsWith("dev") || current.getTag().toLowerCase(Locale.ROOT).startsWith("snapshot")) { - return "You are running a development version, please report any bugs to GitHub."; + return "You are running a development version of the plugin, please report any bugs to GitHub."; } else { - return "You are running a newer version than is released!"; + return "You are running a newer version of the plugin than is released!"; } } return null;