Encoding problem
MJRamon opened this issue · 10 comments
Try adding UTF-8 to build.gradle
processResources {
inputs.property "version", project.version
filteringCharset "UTF-8"
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
}
levelz-1.1.5.zip
Added it here, would appreciate a test