9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-28 11:29:18 +00:00

fix: (last commit) forgot to reverse check

This commit is contained in:
LoJoSho
2023-10-15 10:28:54 -05:00
parent e0b2f0f6b1
commit edccc9ce4e

View File

@@ -61,7 +61,7 @@ public final class HMCCosmeticsPlugin extends JavaPlugin {
Metrics metrics = new Metrics(this, pluginId);
// NMS version check
if (NMSHandlers.isVersionSupported()) {
if (!NMSHandlers.isVersionSupported()) {
getLogger().severe("This version is not supported! Consider switching versions?");
getServer().getPluginManager().disablePlugin(this);
return;