BuildCraft 6.2.2
This commit is contained in:
parent
38e5b837fe
commit
63b1703e4e
4 changed files with 7 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: 'maven' // for uploading to a maven repo
|
||||||
apply plugin: 'checkstyle'
|
apply plugin: 'checkstyle'
|
||||||
|
|
||||||
version = "6.2.1"
|
version = "6.2.2"
|
||||||
group= "com.mod-buildcraft"
|
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]
|
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]
|
||||||
|
|
||||||
|
|
4
buildcraft_resources/changelog/6.2.2
Normal file
4
buildcraft_resources/changelog/6.2.2
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Bugfixes:
|
||||||
|
* [#2257] Regression: some RF engines do not connect to wooden power pipes (asie)
|
||||||
|
* [#2253] NPE in fluid container checking can crash servers (asie)
|
||||||
|
* Added missing Charging Table recipe (asie)
|
|
@ -1,3 +1,3 @@
|
||||||
1.6.4:BuildCraft:4.2.2
|
1.6.4:BuildCraft:4.2.2
|
||||||
1.7.2:BuildCraft:6.0.16
|
1.7.2:BuildCraft:6.0.16
|
||||||
1.7.10:BuildCraft:6.2.1
|
1.7.10:BuildCraft:6.2.2
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class PipeTransportPower extends PipeTransport {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (tile instanceof IEnergyConnection && ((IEnergyConnection) tile).canConnectEnergy(side.getOpposite()));
|
return tile instanceof IEnergyConnection && ((IEnergyConnection) tile).canConnectEnergy(side.getOpposite());
|
||||||
// TODO: Look into this code again when the new RF API is out.
|
// TODO: Look into this code again when the new RF API is out.
|
||||||
/*
|
/*
|
||||||
if (tile instanceof IEnergyConnection && ((IEnergyConnection) tile).canConnectEnergy(side.getOpposite())) {
|
if (tile instanceof IEnergyConnection && ((IEnergyConnection) tile).canConnectEnergy(side.getOpposite())) {
|
||||||
|
|
Loading…
Reference in a new issue