Updated RF Api ( should work for old api too - at least temporary ).

This commit is contained in:
AlgorithmX2
2014-05-06 18:09:31 -05:00
parent 50aa0b9062
commit 5bf8e9d7d0
3 changed files with 28 additions and 13 deletions
+11 -6
View File
@@ -156,12 +156,6 @@ public class PartP2PRFPower extends PartP2PTunnel<PartP2PRFPower> implements cof
return 0;
}
@Override
public boolean canInterface(ForgeDirection from)
{
return true;
}
@Override
public int getEnergyStored(ForgeDirection from)
{
@@ -249,4 +243,15 @@ public class PartP2PRFPower extends PartP2PTunnel<PartP2PRFPower> implements cof
}
return myNullHandler;
}
@Deprecated
public boolean canInterface(ForgeDirection from)
{
return true;
}
@Override
public boolean canConnectEnergy(ForgeDirection from) {
return true;
}
}