Typo locateable
This commit is contained in:
parent
b38b6f6530
commit
020a79ee83
2 changed files with 50 additions and 50 deletions
|
@ -10,13 +10,13 @@ import appeng.api.features.ILocatableRegistry;
|
|||
import appeng.util.Platform;
|
||||
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
||||
|
||||
public class LocateableRegistry implements ILocatableRegistry
|
||||
public class LocatableRegistry implements ILocatableRegistry
|
||||
{
|
||||
|
||||
private HashMap<Long, ILocatable> set;
|
||||
|
||||
@SubscribeEvent
|
||||
public void updateLocateable(LocatableEventAnnounce e)
|
||||
public void updateLocatable(LocatableEventAnnounce e)
|
||||
{
|
||||
if ( Platform.isClient() )
|
||||
return; // IGNORE!
|
||||
|
@ -31,7 +31,7 @@ public class LocateableRegistry implements ILocatableRegistry
|
|||
}
|
||||
}
|
||||
|
||||
public LocateableRegistry() {
|
||||
public LocatableRegistry() {
|
||||
set = new HashMap();
|
||||
MinecraftForge.EVENT_BUS.register( this );
|
||||
}
|
|
@ -21,7 +21,7 @@ public class RegistryContainer implements IRegistryContainer
|
|||
private GrinderRecipeManager GrinderRecipes = new GrinderRecipeManager();
|
||||
private ExternalStorageRegistry ExternalStorageHandlers = new ExternalStorageRegistry();
|
||||
private CellRegistry CellRegistry = new CellRegistry();
|
||||
private LocateableRegistry LocateableRegistry = new LocateableRegistry();
|
||||
private LocatableRegistry LocatableRegistry = new LocatableRegistry();
|
||||
private SpecialComparisonRegistry SpecialComparsonRegistry = new SpecialComparisonRegistry();
|
||||
private WirelessRegistry WirelessRegistery = new WirelessRegistry();
|
||||
private GridCacheRegistry GridCacheRegistry = new GridCacheRegistry();
|
||||
|
@ -64,7 +64,7 @@ public class RegistryContainer implements IRegistryContainer
|
|||
@Override
|
||||
public ILocatableRegistry locatable()
|
||||
{
|
||||
return LocateableRegistry;
|
||||
return LocatableRegistry;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue