diff --git a/core/features/registries/RegistryContainer.java b/core/features/registries/RegistryContainer.java index e70104775..26f2ed981 100644 --- a/core/features/registries/RegistryContainer.java +++ b/core/features/registries/RegistryContainer.java @@ -62,7 +62,7 @@ public class RegistryContainer implements IRegistryContainer } @Override - public ILocatableRegistry locateable() + public ILocatableRegistry locatable() { return LocateableRegistry; } diff --git a/helpers/WirelessTerminalGuiObject.java b/helpers/WirelessTerminalGuiObject.java index c527a08d6..17b6b410b 100644 --- a/helpers/WirelessTerminalGuiObject.java +++ b/helpers/WirelessTerminalGuiObject.java @@ -62,7 +62,7 @@ public class WirelessTerminalGuiObject implements IPortableCell, IActionHost try { long encKey = Long.parseLong( encryptionKey ); - obj = AEApi.instance().registries().locateable().findLocateableBySerial( encKey ); + obj = AEApi.instance().registries().locatable().findLocateableBySerial( encKey ); } catch (NumberFormatException err) { diff --git a/me/cluster/implementations/QuantumCluster.java b/me/cluster/implementations/QuantumCluster.java index d222ec5b1..9aecc5eee 100644 --- a/me/cluster/implementations/QuantumCluster.java +++ b/me/cluster/implementations/QuantumCluster.java @@ -61,7 +61,7 @@ public class QuantumCluster implements ILocatable, IAECluster public boolean canUseNode(long qe) { - QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locateable().findLocateableBySerial( qe ); + QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locatable().findLocateableBySerial( 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().locateable().findLocateableBySerial( otherSide ); + Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locatable().findLocateableBySerial( otherSide ); boolean shutdown = false;