We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b04ccf commit 37c4a9bCopy full SHA for 37c4a9b
src/main/java/com/sovdee/skriptparticles/SkriptParticle.java
@@ -74,7 +74,7 @@ public void onEnable() {
74
SkriptParticle.severe("Could not find Skript! Make sure you have it installed and that it properly loaded. Disabling...");
75
manager.disablePlugin(this);
76
return;
77
- } else if (!Skript.getVersion().isLargerThan(new Version(2, 7, 0))) {
+ } else if (Skript.getVersion().compareTo(new Version(2, 7, 0)) < 0) {
78
SkriptParticle.severe("You are running an unsupported version of Skript. Please update to at least Skript 2.7.0. Disabling...");
79
80
0 commit comments