Make server-side entities exceptions be fatal

This commit is contained in:
DBotThePony 2024-04-22 22:16:05 +07:00
parent e04cc92ffd
commit c2cb8dd208
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 3 additions and 2 deletions

View File

@ -139,6 +139,7 @@ class ServerWorld private constructor(
}
clients.forEach {
LOGGER.info("Kicking ${it.client.alias()} off dying world")
it.remove("World shutting down", setReturnWarp = false)
it.client.enqueueWarp(WarpAlias.Return)
}

View File

@ -338,10 +338,10 @@ abstract class World<This : World<This, ChunkType>, ChunkType : Chunk<This, Chun
it.tick(delta)
} catch (err: Throwable) {
if (it.isRemote && isServer) {
LOGGER.error("Exception ticking client spawned entity $it, removing", err)
LOGGER.error("Exception ticking client owned entity $it, removing", err)
it.remove(AbstractEntity.RemovalReason.REMOVED)
} else {
LOGGER.error("Exception ticking entity $it", err)
throw err
}
}
}