Mod kills ships from Small Ship's mod while scrolling inventory.
Magmabot16 opened this issue ยท 4 comments
Neruina deleting entities is intended behaviour, it's designed to stop your world from bricking, if Neruina didn't kill that entity, you would be locked out of your world.
Report this to the developer of the mod that adds the Brigg
entity.
Hi there, Ive done some more testing and I can confirm theres no ticking entity crash without neurina, and i believe it to be a false positive. Is there plans for a whitelist?
Neruina cannot false positive, it is functionally impossible.
Neruina catches error propagation right before the Minecraft crash sequence begins, if Neruina doesn't catch the propagating error, the game will crash, every time.
Code analysis if you're not convinced
this method here is what runs minecraft's entity ticking.
that operation.call
is the reference to tickConsumer.accept(entity)
, they are the same method in a sense.
if Neruina does not catch the throwable first, it gets passed to the crash report creator, which crashes the game.