File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/electrodynamics/common/tile/machines/quarry Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3939import net .minecraft .world .level .Level ;
4040import net .minecraft .world .level .block .Block ;
4141import net .minecraft .world .level .block .Blocks ;
42+ import net .minecraft .world .level .block .BubbleColumnBlock ;
4243import net .minecraft .world .level .block .LiquidBlock ;
4344import net .minecraft .world .level .block .entity .BlockEntity ;
4445import net .minecraft .world .level .block .state .BlockState ;
@@ -942,7 +943,7 @@ public boolean hasCorners() {
942943
943944 private boolean skipBlock (BlockState state ) {
944945 return state .isAir () || state .is (Blocks .BEDROCK ) || miningPos .getValue ().getY () == level .getMinBuildHeight ()
945- || state .getBlock () instanceof LiquidBlock ;
946+ || state .getBlock () instanceof LiquidBlock || state . getBlock () instanceof BubbleColumnBlock ;
946947 }
947948
948949 private void tickClient (ComponentTickable tick ) {
You can’t perform that action at this time.
0 commit comments