diff --git a/src/main/java/tennox/customselectionbox/CSB.java b/src/main/java/tennox/customselectionbox/CSB.java index 2da5ee4..bb7b7ce 100644 --- a/src/main/java/tennox/customselectionbox/CSB.java +++ b/src/main/java/tennox/customselectionbox/CSB.java @@ -234,7 +234,8 @@ private static AxisAlignedBB getCurrentBlockBB(World world, EntityPlayer player, return getBlockSpecificBB(world, player, pos, inUse, side, hitPos); } else { // no block in hand - return Blocks.air.getSelectedBoundingBox(world, pos); + return null; + // return Blocks.air.getSelectedBoundingBox(world, pos); } }