Fixes wrong interface names for BuildCraft Transport

This commit is contained in:
thatsIch
2015-06-13 23:42:40 +02:00
parent 2274ca79e4
commit 2ba4f312d4
2 changed files with 4 additions and 4 deletions
@@ -90,7 +90,7 @@ import appeng.util.prioitylist.FuzzyPriorityList;
import appeng.util.prioitylist.PrecisePriorityList;
@Interface( iname = "BuildCraftCore", iface = "buildcraft.api.transport.IPipeConnection" )
@Interface( iname = "BuildCraftTransport", iface = "buildcraft.api.transport.IPipeConnection" )
public class PartStorageBus extends PartUpgradeable implements IGridTickable, ICellContainer, IMEMonitorHandlerReceiver<IAEItemStack>, IPipeConnection, IPriorityHost
{
final BaseActionSource mySrc;
@@ -565,7 +565,7 @@ public class PartStorageBus extends PartUpgradeable implements IGridTickable, IC
}
@Override
@Method( iname = "BuildCraftCore" )
@Method( iname = "BuildCraftTransport" )
public ConnectOverride overridePipeConnection( PipeType type, ForgeDirection with )
{
return type == PipeType.ITEM && with == this.side ? ConnectOverride.CONNECT : ConnectOverride.DISCONNECT;