Typo findLocateableBySerial

This commit is contained in:
thatsIch
2014-09-20 22:41:45 +02:00
parent c3891054c9
commit e9ff5bcd21
3 changed files with 4 additions and 4 deletions
@@ -61,7 +61,7 @@ public class QuantumCluster implements ILocatable, IAECluster
public boolean canUseNode(long qe)
{
QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locatable().findLocateableBySerial( qe );
QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locatable().findLocatableBySerial( qe );
if ( qc != null && qc.center instanceof TileQuantumBridge )
{
World theWorld = qc.getCenter().getWorldObj();
@@ -127,7 +127,7 @@ public class QuantumCluster implements ILocatable, IAECluster
}
}
Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locatable().findLocateableBySerial( otherSide );
Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locatable().findLocatableBySerial( otherSide );
boolean shutdown = false;