From a1f4649a09b1b1afc899a96606b8730e0e1435f1 Mon Sep 17 00:00:00 2001 From: Jikoo Date: Sat, 22 Aug 2020 12:00:08 -0400 Subject: [PATCH] Reword invalid version message, include releases link --- plugin/src/main/java/com/lishid/openinv/OpenInv.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/main/java/com/lishid/openinv/OpenInv.java b/plugin/src/main/java/com/lishid/openinv/OpenInv.java index 5b58523..7321eab 100644 --- a/plugin/src/main/java/com/lishid/openinv/OpenInv.java +++ b/plugin/src/main/java/com/lishid/openinv/OpenInv.java @@ -405,8 +405,8 @@ public class OpenInv extends JavaPlugin implements IOpenInv { @Override public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) { if (!this.accessor.isSupported()) { - sender.sendMessage("Your version of CraftBukkit (" + this.accessor.getVersion() + ") is not supported."); - sender.sendMessage("If this version is a recent release, check for an update."); + sender.sendMessage("Your server version (" + this.accessor.getVersion() + ") is not supported."); + sender.sendMessage("Please check https://github.com/lishid/OpenInv/releases for an update."); return true; } return false;