Fixed AreaDescriptor and edited the Jumping ritual slightly.

This commit is contained in:
WayofTime 2015-12-31 10:05:38 -05:00
parent f56261e766
commit 63da257260
2 changed files with 39 additions and 20 deletions

View file

@ -60,7 +60,7 @@ public class AreaDescriptor
@Override
public AxisAlignedBB getAABB(BlockPos pos)
{
AxisAlignedBB tempAABB = new AxisAlignedBB(minimumOffset, maximumOffset);
AxisAlignedBB tempAABB = new AxisAlignedBB(minimumOffset.getX(), minimumOffset.getY(), minimumOffset.getZ(), maximumOffset.getX() + 1, maximumOffset.getY() + 1, maximumOffset.getZ() + 1);
return tempAABB.offset(pos.getX(), pos.getY(), pos.getZ());
}