Merge remote-tracking branch 'origin/master' into TDK
This commit is contained in:
commit
a123ab45f7
6 changed files with 5 additions and 7 deletions
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"animation": {
|
||||
}
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -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 |
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 6
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue