Merge branch 'development' into 1.8
Conflicts: src/main/java/mekanism/common/multipart/PartLogisticalTransporter.java
This commit is contained in:
commit
53b5a25558
1 changed files with 8 additions and 0 deletions
|
@ -774,33 +774,39 @@ public class PartLogisticalTransporter extends PartTransmitter<InventoryNetwork>
|
|||
return pipe;
|
||||
}
|
||||
|
||||
@Interface(iface = "buildcraft.api.transport.IPipe", modid = "BuildCraftAPI|transport")
|
||||
public class TransporterPipeProxy implements IPipe
|
||||
{
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public int x()
|
||||
{
|
||||
return PartLogisticalTransporter.this.x();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public int y()
|
||||
{
|
||||
return PartLogisticalTransporter.this.y();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public int z()
|
||||
{
|
||||
return PartLogisticalTransporter.this.y();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public IPipeTile getTile()
|
||||
{
|
||||
return (IPipeTile)tile();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public IGate getGate(ForgeDirection side)
|
||||
{
|
||||
return null;
|
||||
|
@ -813,12 +819,14 @@ public class PartLogisticalTransporter extends PartTransmitter<InventoryNetwork>
|
|||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public boolean isWired(PipeWire wire)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Method(modid = "BuildCraftAPI|transport")
|
||||
public boolean isWireActive(PipeWire wire)
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue