Placing down an immersive engineering post with sable installed breaks due to this line:
|
shape = childState.getCollisionShape(this.level, BlockPos.ZERO, SableCollisionContext.get()); |
IE posts depend on the having access to the block coordinates for their collision data, but since the function is called with zeroed out coordinates, the function fails with a null reference.
passing the block coordinates through, even if they're the shipyard coordinates, should be all that's needed to fix this.
Placing down an immersive engineering post with sable installed breaks due to this line:
sable/sable_rapier/src/main/java/dev/ryanhcode/sable/physics/impl/rapier/collider/RapierVoxelColliderBakery.java
Line 75 in d3808e8
IE posts depend on the having access to the block coordinates for their collision data, but since the function is called with zeroed out coordinates, the function fails with a null reference.
passing the block coordinates through, even if they're the shipyard coordinates, should be all that's needed to fix this.