BC 6.2.4, fix #2290
This commit is contained in:
parent
2538c3457c
commit
01ad2501c9
4 changed files with 12 additions and 3 deletions
|
@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency
|
|||
apply plugin: 'maven' // for uploading to a maven repo
|
||||
apply plugin: 'checkstyle'
|
||||
|
||||
version = "6.2.3"
|
||||
version = "6.2.4"
|
||||
group= "com.mod-buildcraft"
|
||||
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]
|
||||
|
||||
|
|
2
buildcraft_resources/changelog/6.2.4
Normal file
2
buildcraft_resources/changelog/6.2.4
Normal file
|
@ -0,0 +1,2 @@
|
|||
Bugfixes:
|
||||
* [#2290] 6.2.2 Regresion: Pipes don't connect to quarry (asie)
|
|
@ -1,3 +1,3 @@
|
|||
1.6.4:BuildCraft:4.2.2
|
||||
1.7.2:BuildCraft:6.0.16
|
||||
1.7.10:BuildCraft:6.2.3
|
||||
1.7.10:BuildCraft:6.2.4
|
||||
|
|
|
@ -35,6 +35,8 @@ import buildcraft.api.core.IAreaProvider;
|
|||
import buildcraft.api.core.SafeTimeTracker;
|
||||
import buildcraft.api.filler.FillerManager;
|
||||
import buildcraft.api.tiles.IHasWork;
|
||||
import buildcraft.api.transport.IPipeConnection;
|
||||
import buildcraft.api.transport.IPipeTile;
|
||||
import buildcraft.core.Box;
|
||||
import buildcraft.core.Box.Kind;
|
||||
import buildcraft.core.CoreConstants;
|
||||
|
@ -49,7 +51,7 @@ import buildcraft.core.proxy.CoreProxy;
|
|||
import buildcraft.core.utils.BlockUtils;
|
||||
import buildcraft.core.utils.Utils;
|
||||
|
||||
public class TileQuarry extends TileAbstractBuilder implements IHasWork, ISidedInventory, IDropControlInventory {
|
||||
public class TileQuarry extends TileAbstractBuilder implements IHasWork, ISidedInventory, IDropControlInventory, IPipeConnection {
|
||||
|
||||
private static enum Stage {
|
||||
BUILDING,
|
||||
|
@ -860,4 +862,9 @@ public class TileQuarry extends TileAbstractBuilder implements IHasWork, ISidedI
|
|||
public boolean doDrop() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ConnectOverride overridePipeConnection(IPipeTile.PipeType type, ForgeDirection with) {
|
||||
return type == IPipeTile.PipeType.ITEM ? ConnectOverride.CONNECT : ConnectOverride.DEFAULT;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue