From 1ee23d43988b658d0d455dc65773da289bd8b49d Mon Sep 17 00:00:00 2001 From: filoghost Date: Fri, 31 Dec 2021 15:44:10 +0100 Subject: [PATCH] Fix outdated error message --- .../holographicdisplays/plugin/HolographicDisplays.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java index 5cc86e50..02df03a9 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java @@ -92,7 +92,7 @@ public class HolographicDisplays extends FCommonsPlugin { try { nmsManager = NMSVersion.getCurrent().createNMSManager(errorCollector); } catch (UnknownVersionException e) { - throw new PluginEnableException("Holographic Displays only supports Spigot from 1.8 to 1.17."); + throw new PluginEnableException("Holographic Displays only supports Spigot from 1.8 to 1.18."); } catch (OutdatedVersionException e) { throw new PluginEnableException("Holographic Displays only supports " + e.getMinimumSupportedVersion() + " and above."); } catch (Throwable t) {