When adding a part to a CPU the CPU now properly breaks before reconstructing, Fixes item deletion.

This commit is contained in:
AlgorithmX2 2014-09-06 00:30:33 -05:00
parent 7689f67c14
commit aebadc3829

View file

@ -62,6 +62,9 @@ public class TileCraftingTile extends AENetworkTile implements IAEMultiBlock, IP
public void updateStatus(CraftingCPUCluster c)
{
if ( clust != null && clust != c )
clust.breakCluster();
clust = c;
updateMeta( true );
}