Game crash upon loading new chucks.
CapturedCherry-zz opened this issue ยท 6 comments
Thank you for reporting!
When loading a chuck some times the game will crash with the following crash log. I'm not 100% sure if it is a forestry issues or if its a different mod. https://gist.github.com/RiptideC27/fa5f509b5b6838352eaae5715594f480
I'm using the latest version of Forestry and forge.
Any help would be great thank you.
I did something that is definitely not the ideal solution, but seems to be working. In the function public boolean hasCapability(Capability<?> capability, @Nullable EnumFacing facing)
there's just the code return (facing == getFacing() && energyManager.hasCapability(capability)) || super.hasCapability(capability, facing)
, so I encapsulated it in a try-catch
, so if getFacing
gives an error the function return false
. I'm testing in the areas where the errors always occurs in my world, and the error looks like it's gone by now.
Hmm have you enabled/disabled any modules recently? This looks like the block has just disappeared from the world.
Not really, the only thing I did was change compiling info to match with my Forge version, and also Binnie and IndustrialCraft 2 versions. Other than that, nothing. Also, since when I changed it, that error vanished completely.
This should be fixed by 322c665