Ditch AABBPool

This commit is contained in:
AlgorithmX2
2014-06-04 22:59:56 -05:00
parent f894d48328
commit 1ab7f7c110
12 changed files with 13 additions and 16 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ public class BlockMatrixFrame extends AEBaseBlock implements ICustomCollision
@Override
public void addCollidingBlockToList(World w, int x, int y, int z, AxisAlignedBB bb, List out, Entity e)
{
out.add( AxisAlignedBB.getAABBPool().getAABB( 0.0, 0.0, 0.0, 1.0, 1.0, 1.0 ) );
out.add( AxisAlignedBB.getBoundingBox( 0.0, 0.0, 0.0, 1.0, 1.0, 1.0 ) );
}
}