TheOriginalGolem / Hbm-s-Nuclear-Tech-GIT

My fork of the HBM's nuclear tech mod.
GNU General Public License v3.0
32 stars 18 forks source link

FEL crash #100

Open VanyaKnCH opened 1 year ago

VanyaKnCH commented 1 year ago

after i placed FEL and rejoined world my game crashes https://pastebin.com/wYQsX7Bf

Vetpetmon commented 1 year ago

If my MC Deobfuscation mappings are correct, isOutsideBuildHeight() is throwing an exception because somehow, the block position is being put in an impossible location, and thus, returning a null value. This is a NullPointerException. Vanilla code returning the null value: image

What could be causing it: image Y-position value is somehow below 0, or above 255

ffgeuaInit() is creating a blockpos that it should not. Have it check y-values before returning the BlockPos object.