Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
@@ -35,8 +35,8 @@ public class BCPipeInventory implements IMEInventory<IAEItemStack>
final ForgeDirection dir;
public BCPipeInventory(TileEntity _te, ForgeDirection _dir) {
te = _te;
dir = _dir;
this.te = _te;
this.dir = _dir;
}
@Override
@@ -50,12 +50,12 @@ public class BCPipeInventory implements IMEInventory<IAEItemStack>
{
if ( mode == Actionable.SIMULATE )
{
if ( BC.instance.canAddItemsToPipe( te, input.getItemStack(), dir ) )
if ( BC.instance.canAddItemsToPipe( this.te, input.getItemStack(), this.dir ) )
return null;
return input;
}
if ( BC.instance.addItemsToPipe( te, input.getItemStack(), dir ) )
if ( BC.instance.addItemsToPipe( this.te, input.getItemStack(), this.dir ) )
return null;
return input;
}