Make server-side entities exceptions be fatal
This commit is contained in:
parent
e04cc92ffd
commit
c2cb8dd208
@ -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)
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user