Hitboxes when holding soldering iron #1095
This commit is contained in:
parent
650a105e00
commit
a1e3a8161e
3 changed files with 3 additions and 3 deletions
|
@ -107,7 +107,7 @@ public class GT_MetaPipeEntity_Cable extends MetaPipeEntity implements IMetaTile
|
|||
|
||||
@Override
|
||||
public AxisAlignedBB getCollisionBoundingBoxFromPool(World aWorld, int aX, int aY, int aZ) {
|
||||
float tSpace = (1f - getThickNess())/2;
|
||||
float tSpace = (1f - mThickNess)/2;
|
||||
float tSide0 = tSpace;
|
||||
float tSide1 = 1f - tSpace;
|
||||
float tSide2 = tSpace;
|
||||
|
|
|
@ -147,7 +147,7 @@ public class GT_MetaPipeEntity_Fluid extends MetaPipeEntity {
|
|||
|
||||
@Override
|
||||
public AxisAlignedBB getCollisionBoundingBoxFromPool(World aWorld, int aX, int aY, int aZ) {
|
||||
float tSpace = (1f - getThickNess())/2;
|
||||
float tSpace = (1f - mThickNess)/2;
|
||||
float tSide0 = tSpace;
|
||||
float tSide1 = 1f - tSpace;
|
||||
float tSide2 = tSpace;
|
||||
|
|
|
@ -321,7 +321,7 @@ public class GT_MetaPipeEntity_Item extends MetaPipeEntity implements IMetaTileE
|
|||
|
||||
@Override
|
||||
public AxisAlignedBB getCollisionBoundingBoxFromPool(World aWorld, int aX, int aY, int aZ) {
|
||||
float tSpace = (1f - getThickNess())/2;
|
||||
float tSpace = (1f - mThickNess)/2;
|
||||
float tSide0 = tSpace;
|
||||
float tSide1 = 1f - tSpace;
|
||||
float tSide2 = tSpace;
|
||||
|
|
Loading…
Reference in a new issue