Allow rs.version to be a double

This allows sub-versions of the same RS revision
This commit is contained in:
Adam
2021-05-26 19:08:30 -04:00
parent 5bd8932f8e
commit 991e8fda50
4 changed files with 4 additions and 12 deletions

View File

@@ -40,7 +40,7 @@ public class CacheProperties
public static int getRsVersion() throws IOException
{
return Integer.parseInt(getProperties().getProperty("rs.version"));
return (int) Double.parseDouble(getProperties().getProperty("rs.version"));
}
public static int getCacheVersion() throws IOException