Skip to content

Commit

Permalink
small clean up
Browse files Browse the repository at this point in the history
removed a println that should have not made it to prod, whoops!
  • Loading branch information
Andrew6rant committed Aug 18, 2023
1 parent edd1b27 commit e067531
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
import net.minecraft.item.ItemPlacementContext;
import net.minecraft.item.ItemStack;
import net.minecraft.registry.tag.BlockTags;
import net.minecraft.state.property.BooleanProperty;
import net.minecraft.util.hit.BlockHitResult;
import net.minecraft.util.hit.HitResult;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Direction;
import net.minecraft.util.math.Vec3d;
Expand All @@ -31,7 +29,6 @@
public class PlacementUtil {

public static boolean calcPaneCanConnectToVerticalSlab(Direction paneDirection, BlockState offsetState, boolean sideSolidFullSquare) {
System.out.println("calcPaneCanConnectToVerticalSlab called");
if (sideSolidFullSquare && !cannotConnect(offsetState)) {
return true;
}
Expand All @@ -48,7 +45,7 @@ public static boolean calcPaneCanConnectToVerticalSlab(Direction paneDirection,
return offsetState.getBlock() instanceof PaneBlock || offsetState.isIn(BlockTags.WALLS);
}

public static VoxelShape getDynamicOutlineShape(VerticalType verticalType, Direction side, BlockHitResult cast) {
public static VoxelShape getDynamicOutlineShape(VerticalType verticalType, Direction side, BlockHitResult cast) {
return switch (verticalType) {
case FALSE -> {
switch (side) {
Expand Down

0 comments on commit e067531

Please sign in to comment.