Typo SpecialComparsonRegistry
This commit is contained in:
parent
4e66fa3c7a
commit
ce2dbecde1
2 changed files with 3 additions and 5 deletions
|
@ -22,7 +22,7 @@ public class RegistryContainer implements IRegistryContainer
|
|||
private ExternalStorageRegistry ExternalStorageHandlers = new ExternalStorageRegistry();
|
||||
private CellRegistry CellRegistry = new CellRegistry();
|
||||
private LocatableRegistry LocatableRegistry = new LocatableRegistry();
|
||||
private SpecialComparisonRegistry SpecialComparsonRegistry = new SpecialComparisonRegistry();
|
||||
private SpecialComparisonRegistry SpecialComparisonRegistry = new SpecialComparisonRegistry();
|
||||
private WirelessRegistry WirelessRegistry = new WirelessRegistry();
|
||||
private GridCacheRegistry GridCacheRegistry = new GridCacheRegistry();
|
||||
private P2PTunnelRegistry P2PRegistry = new P2PTunnelRegistry();
|
||||
|
@ -52,7 +52,7 @@ public class RegistryContainer implements IRegistryContainer
|
|||
@Override
|
||||
public ISpecialComparisonRegistry specialComparison()
|
||||
{
|
||||
return SpecialComparsonRegistry;
|
||||
return SpecialComparisonRegistry;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -48,9 +48,7 @@ public class ItemModList implements IItemContainer<IAEItemStack>
|
|||
@Override
|
||||
public Collection<IAEItemStack> findFuzzy(IAEItemStack input, FuzzyMode fuzzy)
|
||||
{
|
||||
Collection<IAEItemStack> overrides = overrides.findFuzzy( input, fuzzy );
|
||||
|
||||
return overrides;
|
||||
return overrides.findFuzzy( input, fuzzy );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue