Skip to content

Commit

Permalink
fix fluid pipe sync, BuildCraft 7.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed May 10, 2015
1 parent 80b173d commit 8570b2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency
apply plugin: 'maven' // for uploading to a maven repo
apply plugin: 'checkstyle'

version = "7.0.3"
version = "7.0.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]

Expand Down
2 changes: 2 additions & 0 deletions buildcraft_resources/changelog/7.0.4
Expand Up @@ -23,5 +23,7 @@ Bugs fixed:
* Add-assembly-recipe IMC not working (asie)
* Cauldron TE caching issues (asie - it's a terrible workaround)
* Crash with Transport and no Silicon (asie)
* Emerald fluid pipes not accepting NBT-tagged fluids (asie)
* Fluid pipe sync issues on join (asie)
* Incorrect orientation/position in inventory rendering (asie)
* Laser table textures broken when anisotropic filtering on (asie)
2 changes: 1 addition & 1 deletion common/buildcraft/transport/PipeTransportFluids.java
Expand Up @@ -469,7 +469,7 @@ private void setFluidType(FluidStack type) {
public void sendDescriptionPacket() {
super.sendDescriptionPacket();

initClient = 60;
initClient = 6;
}

public FluidStack getStack(ForgeDirection direction) {
Expand Down

0 comments on commit 8570b2b

Please sign in to comment.