Merge remote-tracking branch 'origin/master' into TDK

This commit is contained in:
LemADEC 2014-09-19 02:11:40 +02:00
commit a123ab45f7
6 changed files with 5 additions and 7 deletions

View file

@ -1,4 +0,0 @@
{
"animation": {
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,4 +1,5 @@
{
"animation": {
"frametime": 6
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,4 +1,5 @@
{
"animation": {
"frametime": 6
}
}
}

View file

@ -118,7 +118,7 @@ public class TileEntityLift extends WarpEnergyTE implements IPeripheral {
}
}
} else if (mode == MODE_DOWN) {
AxisAlignedBB aabb = AxisAlignedBB.getBoundingBox(xmin, firstUncoveredY + 2.5D, zmin, xmax, yCoord + 2.5D, zmax);
AxisAlignedBB aabb = AxisAlignedBB.getBoundingBox(xmin, Math.min(firstUncoveredY + 4.0D, yCoord), zmin, xmax, yCoord + 2.0D, zmax);
List list = worldObj.getEntitiesWithinAABBExcludingEntity(null, aabb);
if (list != null) {
for (Object o : list) {