Skip to content

Commit

Permalink
Update Printer.java
Browse files Browse the repository at this point in the history
  • Loading branch information
aria1th authored Aug 24, 2021
1 parent 1ab155d commit a63c5c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ else if (sBlock instanceof ObserverBlock || sBlock instanceof PistonBlock) {
.getFirstPropertyFacingValue(stateSchematic);
if (facing != null) {
FacingData facedata = getFacingData(stateSchematic);
if ((!CanUseProtocol && !IsBlockSupportedCarpet(stateSchematic.getBlock())) && !canPlaceFace(facedata, stateSchematic, mc.player, primaryFacing, horizontalFacing))
if (!(CanUseProtocol && IsBlockSupportedCarpet(stateSchematic.getBlock())) && !canPlaceFace(facedata, stateSchematic, mc.player, primaryFacing, horizontalFacing))
continue;

if ((stateSchematic.getBlock() instanceof DoorBlock
Expand Down

0 comments on commit a63c5c4

Please sign in to comment.