mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed some rendering issues with cloud stairs
This commit is contained in:
parent
2549cfe1ae
commit
cccc207162
1 changed files with 3 additions and 5 deletions
|
@ -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) {
|
||||
return beside.getValue(BlockSlab.HALF).ordinal() == half.ordinal();
|
||||
}
|
||||
} else if (beside.getBlock() instanceof BlockCloudSlab) {
|
||||
return beside.getValue(BlockSlab.HALF).ordinal() == half.ordinal();
|
||||
}
|
||||
|
||||
return true;
|
||||
return front == face;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue