Force UTF-8 and replace § has hex value (\u00A7) to utf-8 §

This commit is contained in:
alexcrea 2024-08-08 01:39:43 +02:00
parent 7d20ea83c3
commit 3cc9c674f3
No known key found for this signature in database
GPG key ID: 43FD265DB0DBF91F
33 changed files with 279 additions and 272 deletions

View file

@ -74,6 +74,8 @@ allprojects {
tasks.withType<JavaCompile>().configureEach {
sourceCompatibility = "16" // We aim for java 16 for minecraft 1.16.5. even if it not really suported.
targetCompatibility = "16"
options.encoding = "UTF-8"
}
kotlin {