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 appeng.util.Platform;
|
||||||
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
||||||
|
|
||||||
public class LocateableRegistry implements ILocatableRegistry
|
public class LocatableRegistry implements ILocatableRegistry
|
||||||
{
|
{
|
||||||
|
|
||||||
private HashMap<Long, ILocatable> set;
|
private HashMap<Long, ILocatable> set;
|
||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void updateLocateable(LocatableEventAnnounce e)
|
public void updateLocatable(LocatableEventAnnounce e)
|
||||||
{
|
{
|
||||||
if ( Platform.isClient() )
|
if ( Platform.isClient() )
|
||||||
return; // IGNORE!
|
return; // IGNORE!
|
||||||
|
@ -31,7 +31,7 @@ public class LocateableRegistry implements ILocatableRegistry
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public LocateableRegistry() {
|
public LocatableRegistry() {
|
||||||
set = new HashMap();
|
set = new HashMap();
|
||||||
MinecraftForge.EVENT_BUS.register( this );
|
MinecraftForge.EVENT_BUS.register( this );
|
||||||
}
|
}
|
|
@ -21,7 +21,7 @@ public class RegistryContainer implements IRegistryContainer
|
||||||
private GrinderRecipeManager GrinderRecipes = new GrinderRecipeManager();
|
private GrinderRecipeManager GrinderRecipes = new GrinderRecipeManager();
|
||||||
private ExternalStorageRegistry ExternalStorageHandlers = new ExternalStorageRegistry();
|
private ExternalStorageRegistry ExternalStorageHandlers = new ExternalStorageRegistry();
|
||||||
private CellRegistry CellRegistry = new CellRegistry();
|
private CellRegistry CellRegistry = new CellRegistry();
|
||||||
private LocateableRegistry LocateableRegistry = new LocateableRegistry();
|
private LocatableRegistry LocatableRegistry = new LocatableRegistry();
|
||||||
private SpecialComparisonRegistry SpecialComparsonRegistry = new SpecialComparisonRegistry();
|
private SpecialComparisonRegistry SpecialComparsonRegistry = new SpecialComparisonRegistry();
|
||||||
private WirelessRegistry WirelessRegistery = new WirelessRegistry();
|
private WirelessRegistry WirelessRegistery = new WirelessRegistry();
|
||||||
private GridCacheRegistry GridCacheRegistry = new GridCacheRegistry();
|
private GridCacheRegistry GridCacheRegistry = new GridCacheRegistry();
|
||||||
|
@ -64,7 +64,7 @@ public class RegistryContainer implements IRegistryContainer
|
||||||
@Override
|
@Override
|
||||||
public ILocatableRegistry locatable()
|
public ILocatableRegistry locatable()
|
||||||
{
|
{
|
||||||
return LocateableRegistry;
|
return LocatableRegistry;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue