mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-08 12:51:51 +09:00
newer map data format
This commit is contained in:
@@ -72,18 +72,16 @@ object LoadScreen : ScreenAdapter() {
|
||||
println("[LoadScreen] Screen to load is not set. Are you testing the UI?")
|
||||
}
|
||||
else {
|
||||
val runnable = object : Runnable {
|
||||
override fun run() {
|
||||
try {
|
||||
screenToLoad!!.show()
|
||||
}
|
||||
catch (e: Exception) {
|
||||
addMessage("$ccR$e")
|
||||
errorTrapped = true
|
||||
val runnable = {
|
||||
try {
|
||||
screenToLoad!!.show()
|
||||
}
|
||||
catch (e: Exception) {
|
||||
addMessage("$ccR$e")
|
||||
errorTrapped = true
|
||||
|
||||
System.err.println("Error while loading:")
|
||||
e.printStackTrace()
|
||||
}
|
||||
System.err.println("Error while loading:")
|
||||
e.printStackTrace()
|
||||
}
|
||||
}
|
||||
screenLoadingThread = Thread(runnable, "LoadScreen GameLoader")
|
||||
|
||||
Reference in New Issue
Block a user