Bug fixes

This commit is contained in:
Thoronium
2023-02-26 01:44:01 -07:00
committed by GitHub
parent 85a16e3407
commit f2e3c69c0f
3 changed files with 9 additions and 3 deletions

View File

@@ -97,9 +97,9 @@ pub fn unzip(
}
// If downloading full build, emit that the jar was extracted with it
if zipfile = "GrasscutterCulti3.4.zip" {
if zipfile == "GrasscutterCulti3.4.zip" {
window
.emit("jar_extracted", destpath.to_string() + (destpath.to_string() + "grasscutter.jar"))
.emit("jar_extracted", destpath.to_string() + &((destpath.to_string() + "grasscutter.jar")))
.unwrap();
}