Typo registerPassThru

This commit is contained in:
thatsIch
2014-09-21 00:30:21 +02:00
parent 5845fca96f
commit 2819f5c537
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ public class ApiPart implements IPartHelper
for (Class layerInterface : interfaces2Layer.keySet())
{
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.FMP ) )
((IFMP) AppEng.instance.getIntegration( IntegrationType.FMP )).registerPassThru( layerInterface );
((IFMP) AppEng.instance.getIntegration( IntegrationType.FMP )).registerPassThrough( layerInterface );
}
}
+1 -1
View File
@@ -13,7 +13,7 @@ public interface IFMP
CableBusContainer getCableContainer(TileEntity te);
void registerPassThru(Class<?> layerInterface);
void registerPassThrough(Class<?> layerInterface);
Event newFMPPacketEvent(EntityPlayerMP sender);
+1 -1
View File
@@ -143,7 +143,7 @@ public class FMP implements IIntegrationModule, IPartFactory, IPartConverter, IF
}
@Override
public void registerPassThru(Class<?> layerInterface)
public void registerPassThrough(Class<?> layerInterface)
{
try
{