File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/ru/endlesscode/rpginventory/compat Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,18 @@ public class VersionHandler {
37
37
public static final int VERSION_1_14 = 1_14_00 ;
38
38
public static final int VERSION_1_15 = 1_15_00 ;
39
39
public static final int VERSION_1_16 = 1_16_00 ;
40
+ public static final int VERSION_1_17 = 1_17_00 ;
40
41
41
42
private static final Pattern pattern = Pattern .compile ("(?<version>\\ d\\ .\\ d{1,2}(\\ .\\ d)?)-.*" );
42
43
43
44
private static int versionCode = -1 ;
44
45
45
46
public static boolean isNotSupportedVersion () {
46
- return getVersionCode () < VERSION_1_14 || getVersionCode () >= VERSION_1_16 ;
47
+ return getVersionCode () < VERSION_1_14 || getVersionCode () >= VERSION_1_17 ;
47
48
}
48
49
49
50
public static boolean isExperimentalSupport () {
50
- return getVersionCode () >= VERSION_1_16 ;
51
+ return false ;
51
52
}
52
53
53
54
public static boolean isLegacy () {
You can’t perform that action at this time.
0 commit comments