Make java stuff public, fix forge erroring out due to ratelimiting

This commit is contained in:
Jai A
2021-12-19 15:09:36 -07:00
parent 5a6c06c8a3
commit 2a588d1e9a
5 changed files with 305 additions and 283 deletions

View File

@@ -233,9 +233,9 @@ pub struct LibraryExtract {
/// Information about the java version the game needs
pub struct JavaVersion {
/// The component needed for the Java installation
component: String,
pub component: String,
/// The major Java version number
major_version: u32,
pub major_version: u32,
}
#[derive(Serialize, Deserialize, Debug)]