This commit is contained in:
DBotThePony 2023-12-01 19:22:49 +07:00
parent cc1c0124ae
commit 35fc841037
Signed by: DBot
GPG Key ID: DCC23B5715498507
3 changed files with 4 additions and 5 deletions

View File

@ -130,7 +130,7 @@ object Registries {
AssetPathStack(listedFile.computeDirectory()) {
val elem = elementAdapter.read(listedFile.jsonReader())
val read = adapter.fromJsonTree(elem)
val keys = keyProvider(read);
val keys = keyProvider(read)
KOptional.of {
try {
@ -139,12 +139,12 @@ object Registries {
else
registry.add(keys.first, read, elem, listedFile)
} catch (err: Throwable) {
LOGGER.error("Loading ${registry.name} definition file $listedFile", err);
LOGGER.error("Loading ${registry.name} definition file $listedFile", err)
}
}
}
} catch (err: Throwable) {
LOGGER.error("Loading ${registry.name} definition file $listedFile", err);
LOGGER.error("Loading ${registry.name} definition file $listedFile", err)
KOptional.empty()
} finally {
it.elements.incrementAndGet()

View File

@ -458,7 +458,6 @@ object Starbound : ISBFileLocator {
initializing = false
initialized = true
checkMailbox()
log.line("Finished loading in ${System.currentTimeMillis() - time}ms")
}

View File

@ -994,7 +994,7 @@ class StarboundClient : Closeable {
fontShaderPrograms.forEachValid { it.viewMatrix = viewportMatrixScreen }
if (System.nanoTime() - loadingLog.lastActivity <= 4_000_000_000L) {
//renderLoadingText()
renderLoadingText()
}
stack.clear(Matrix3f.identity())