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 2cb7f67 commit a0e4a0aCopy full SHA for a0e4a0a
src/main/java/fr/flowarg/flowupdater/versions/NeoForgeVersion.java
@@ -28,7 +28,9 @@ protected boolean isCompatible()
28
if (this.modLoaderVersion.startsWith(str))
29
return true;
30
}
31
- return false;
+
32
+ return Integer.parseInt(this.modLoaderVersion.split("\\.")[0]) >=
33
+ Integer.parseInt(this.compatibleVersions[0].substring(0, 2));
34
35
36
@Override
0 commit comments