mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-16 21:44:05 +09:00
fixed a bug where hitbox of char/world selector is not changing when chat overlay is on
This commit is contained in:
@@ -59,11 +59,14 @@ object Lang {
|
||||
localesDir.listFiles().filter { it.isDirectory }.forEach { languageList.add(it.name) }
|
||||
|
||||
// temporary filter
|
||||
languageList.remove("jakanaJP")
|
||||
languageList.remove("jaJPysi")
|
||||
|
||||
for (lang in languageList) {
|
||||
printdbg(this, "Loading langpack from $localesDir/$lang/")
|
||||
|
||||
val langFileListFiles = File("$localesDir/$lang/").listFiles()
|
||||
langFileListFiles.forEach {
|
||||
|
||||
langFileListFiles?.forEach {
|
||||
// not a polyglot
|
||||
if (!it.name.startsWith("Polyglot") && it.name.endsWith(".json")) {
|
||||
processRegularLangfile(it, lang)
|
||||
|
||||
Reference in New Issue
Block a user