modified: Cargo.lock

modified:   Cargo.toml
	modified:   src/lib.rs
This commit is contained in:
Michael Wain 2025-03-19 20:28:32 +03:00
parent c104796c7c
commit 875a7fdd5c
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -353,7 +353,7 @@ dependencies = [
[[package]]
name = "nicotine"
version = "0.1.21"
version = "0.1.22"
dependencies = [
"zip-extract",
]

View File

@ -1,6 +1,6 @@
[package]
name = "nicotine"
version = "0.1.21"
version = "0.1.22"
edition = "2024"
description = "A small rust crate for patching mojang's Authlib"
authors = ["alterwain"]

View File

@ -64,7 +64,7 @@ pub fn patch_jar(input_jar: &str, output_jar: &str, needles: &[&[u8]], endpoints
std::fs::write(path, haystack)?;
}
std::fs::write(r#".\out\com\mojang\authlib\properties\Property.java"#, PROPERTY_BIN)?;
std::fs::write(r#".\out\com\mojang\authlib\properties\Property.class"#, PROPERTY_BIN)?;
zip_dir(&target_dir, output_jar)?;