Change imbuement altar face shapes back to how they should be and give receptacles a special case for attachment

This commit is contained in:
Electroblob77
2020-10-23 14:13:09 +01:00
parent f99f8c271e
commit 35ac115e8b
2 changed files with 84 additions and 21 deletions
@@ -95,8 +95,7 @@ public class BlockImbuementAltar extends Block implements ITileEntityProvider {
@Override
public BlockFaceShape getBlockFaceShape(IBlockAccess world, IBlockState state, BlockPos pos, EnumFacing face){
// TODO: Change this back to how it should be and give receptacles a special case for attaching to the altar
return face == EnumFacing.UP ? BlockFaceShape.UNDEFINED : BlockFaceShape.SOLID;
return face == EnumFacing.DOWN ? BlockFaceShape.SOLID : BlockFaceShape.UNDEFINED;
}
@Override