BuildCraft 6.4.12

This commit is contained in:
asiekierka 2015-04-22 16:24:58 +02:00
parent f7b5c86f66
commit 28bb9639e1
4 changed files with 16 additions and 3 deletions

View file

@ -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.4.11"
version = "6.4.12"
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]

View file

@ -0,0 +1,13 @@
Improvements:
* [#2632] Filters on gates can be cleared by a mere click (asie)
Bugs fixed:
* [#2650] Server crash with Horizon pattern (asie)
* [#2649] Server crash with Oil in Nether (asie)
* [#2639] Dupe bug with finite liquids (asie)
* [#2638] Wooden pipes massive power usage (asie)
* [#2629] Stripes pipes cannot place blocks properly (asie)
* Miscellanous builder/blueprint issues (asie)
* Pump entity spam on the client side (asie)

View file

@ -1,3 +1,3 @@
1.6.4:BuildCraft:4.2.2
1.7.2:BuildCraft:6.0.16
1.7.10:BuildCraft:6.4.11
1.7.10:BuildCraft:6.4.12

View file

@ -8,7 +8,6 @@
*/
package buildcraft.transport.stripes;
import buildcraft.api.core.Position;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
@ -16,6 +15,7 @@ import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
import buildcraft.api.core.Position;
import buildcraft.api.transport.IStripesActivator;
import buildcraft.api.transport.IStripesHandler;