Fix outdated error message

This commit is contained in:
filoghost 2021-12-31 15:44:10 +01:00
parent a1d3eb5e26
commit 1ee23d4398
1 changed files with 1 additions and 1 deletions

View File

@ -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) {