VillagerQuests

VillagerQuests

41.6k Downloads

Encoding problem

MJRamon opened this issue · 10 comments

commented

If Cyrillic symbols are used, for example, "Задание", text becomes unreadable.
json file is in UTF-8.
2021-12-29_07 57 56

commented

But it's Villager Quests, not LevelZ :)

commented

Ups XD sorry, I send one later

commented

Mh I have actually no idea how to fix this

commented

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
}
commented

levelz-1.1.5.zip
Added it here, would appreciate a test

commented

2022-01-11_09 44 30
Nope, the bug is there.

commented

Honestly not sure how to fix this issue..

commented

I call for help from other developers in here, cause this issue is important.

commented

Maybe it was fixed now?