Fixed some rendering issues with cloud stairs

This commit is contained in:
Sollace 2018-09-19 10:19:46 +02:00
parent 2549cfe1ae
commit cccc207162

View file

@ -118,13 +118,11 @@ public class BlockCloudStairs extends BlockStairs implements ICloudBlock {
return (bfront == front && front != face && half == bhalf)
|| (bfront.getOpposite() == front && front == face);
} else {
if (beside.getBlock() instanceof BlockCloudSlab) {
} else if (beside.getBlock() instanceof BlockCloudSlab) {
return beside.getValue(BlockSlab.HALF).ordinal() == half.ordinal();
}
}
return true;
return front == face;
}
}