Skip to content

Commit

Permalink
Fixes #1778. Fixes #1771. Adjust landing pad sensor box height.
Browse files Browse the repository at this point in the history
  • Loading branch information
micdoodle8 committed Aug 15, 2015
1 parent 6c1e85f commit 2675afc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -35,7 +35,7 @@ public void updateEntity()

if (!this.worldObj.isRemote)
{
final List<?> list = this.worldObj.getEntitiesWithinAABB(IFuelable.class, AxisAlignedBB.getBoundingBox(this.xCoord - 0.5D, this.yCoord, this.zCoord - 0.5D, this.xCoord + 0.5D, this.yCoord + 0.5D, this.zCoord + 0.5D));
final List<?> list = this.worldObj.getEntitiesWithinAABB(IFuelable.class, AxisAlignedBB.getBoundingBox(this.xCoord - 0.5D, this.yCoord, this.zCoord - 0.5D, this.xCoord + 0.5D, this.yCoord + 1.0D, this.zCoord + 0.5D));

boolean docked = false;

Expand Down

0 comments on commit 2675afc

Please sign in to comment.