Current for BC 6.0.12 release

This commit is contained in:
AlgorithmX2
2014-05-11 13:31:25 -05:00
parent a04bc65e35
commit 02ace8145f
2 changed files with 9 additions and 9 deletions
@@ -25,12 +25,12 @@ public class AECableSchematicTile extends AEGenericSchematicTile implements IPar
public void rotateLeft(IBuilderContext context)
{
CableBusContainer cbc = new CableBusContainer( this );
cbc.readFromNBT( cpt );
cbc.readFromNBT( tileNBT );
cbc.rotateLeft();
cpt = new NBTTagCompound();
cbc.writeToNBT( cpt );
tileNBT = new NBTTagCompound();
cbc.writeToNBT( tileNBT );
}
@Override