Skip to content

Commit

Permalink
Fixed pillar and post hitboxes
Browse files Browse the repository at this point in the history
because I tried to eyeball it when I'd already done the numbers in the
model
  • Loading branch information
TheIcyOne committed Jan 14, 2019
1 parent c6a553f commit 7e60644
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, Block
@Override
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
{
return new AxisAlignedBB(0.05, 0, 0.05, 0.95, 1, 0.95);
return new AxisAlignedBB(0.0625, 0, 0.0625, 0.9375, 1, 0.9375);
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, Block
@Override
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
{
return new AxisAlignedBB(0.4, 0, 0.4, 0.6, 1, 0.6);
return new AxisAlignedBB(0.40625, 0, 0.40625, 0.59375, 1, 0.59375);
}
}

0 comments on commit 7e60644

Please sign in to comment.