Yep I can reproduce it reliably with skyblocker :
Steps:
Be on your private island & have Fairy Souls Helper disabled
Enter the hub
Enable the fairy souls helper
IF instantly crashes the game
Explanation:
the "optimized" buffer stuff from ImmediatlyFast can cause crashes when attempting to render things.
I encountered the crash java.lang.NullPointerException: Cannot invoke "java.nio.ByteBuffer.rewind()" because "this.field_1555" is null from something in my own mod, but based on #215 (and from my own investigation) stuff in Skyblocker can trigger the crash as well.
It occurs because IF sets the buffer inside of the BufferBuilder to null sometimes (which can never happen in vanilla), so when the buffer is attempted to be rewound it triggers the NullPointerException.
Log: latest.log
Original issue : https://github.com/SkyblockerMod/Skyblocker/issues/215
Steps and Explanation by @AzureAaron
Yep I can reproduce it reliably with skyblocker : Steps:
Explanation: the "optimized" buffer stuff from ImmediatlyFast can cause crashes when attempting to render things. I encountered the crash java.lang.NullPointerException: Cannot invoke "java.nio.ByteBuffer.rewind()" because "this.field_1555" is null from something in my own mod, but based on #215 (and from my own investigation) stuff in Skyblocker can trigger the crash as well. It occurs because IF sets the buffer inside of the BufferBuilder to null sometimes (which can never happen in vanilla), so when the buffer is attempted to be rewound it triggers the NullPointerException. Log: latest.log