Removed Vec3Pool

This commit is contained in:
AlgorithmX2
2014-06-13 12:42:09 -05:00
parent 5dec6e7003
commit 4763069fab
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -334,7 +334,7 @@ public class BlockCableBus extends AEBaseBlock
@Override
public boolean onActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
{
return cb( w, x, y, z ).activate( player, w.getWorldVec3Pool().getVecFromPool( hitX, hitY, hitZ ) );
return cb( w, x, y, z ).activate( player, Vec3.createVectorHelper( hitX, hitY, hitZ ) );
}
@Override