Skip to content

Commit 25909f7

Browse files
committed
Merge remote-tracking branch 'origin/mc1.18/fabric/dev' into mc1.18/fabric/dev
# Conflicts: # FABRIC_CHANGELOG.txt
2 parents fb0ecc0 + d8f0f41 commit 25909f7

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

FABRIC_CHANGELOG.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ Change logging starts below:
1616
- Fix crash when item drain drains a custom potion (#1580)
1717
- Fix crash when draining items that do not have a remainder (#1622)
1818
- Fix pumps not draining fluids from custom cauldrons registered with CauldronFluidContent$registerCauldron (#1618)
19-
- Merge in 0.5.1.g/h (https://github.com/Creators-of-Create/Create/wiki/0.5.1g-&-h)
20-
- Merge in 0.5.1.i (https://github.com/Creators-of-Create/Create/wiki/0.5.1i)
2119
- Fix smart observers not updating their checked position (#1621)
2220
- Fix nonsense fluid unit option when display links measured items (#995)
21+
- Fix copycat panels with framed glass not hiding faces when using sodium (#1540)
22+
- Merge in 0.5.1.g/h (https://github.com/Creators-of-Create/Create/wiki/0.5.1g-&-h)
23+
- Merge in 0.5.1.i (https://github.com/Creators-of-Create/Create/wiki/0.5.1i)
24+
- Merge in 0.5.1.j (https://github.com/Creators-of-Create/Create/wiki/0.5.1j)

src/main/java/com/simibubi/create/content/decoration/copycat/CopycatPanelBlock.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@ public boolean isPathfindable(BlockState pState, BlockGetter pLevel, BlockPos pP
167167
return false;
168168
}
169169

170+
@Override
171+
public boolean skipRendering(BlockState state, BlockState adjacentState, Direction direction) {
172+
return state.equals(adjacentState) && direction.getAxis().isHorizontal();
173+
}
174+
170175
@Override
171176
public boolean supportsExternalFaceHiding(BlockState state) {
172177
return true;

0 commit comments

Comments
 (0)