BuildCraft 7.1.19

This commit is contained in:
Adrian Siekierka 2017-01-03 22:10:01 +01:00
parent 790d05d4c4
commit dc7b112033
4 changed files with 7 additions and 5 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 = "7.1.18"
version = "7.1.19"
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,5 @@
Bugs fixed:
* [#3451] Potentially fix Planter Robot item filter handling (AlexIIL)
* [#3316] Builder dupe bug (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:7.1.18
1.7.10:BuildCraft:7.1.19

View file

@ -13,12 +13,9 @@ import net.minecraft.item.ItemStack;
import buildcraft.api.robots.AIRobot;
import buildcraft.api.robots.EntityRobotBase;
import buildcraft.core.lib.inventory.ITransactor;
import buildcraft.core.lib.inventory.Transactor;
import buildcraft.core.lib.inventory.filters.AggregateFilter;
import buildcraft.core.lib.inventory.filters.IStackFilter;
import buildcraft.robotics.statements.ActionRobotFilterTool;
import buildcraft.robotics.statements.ActionStationProvideItems;
public class AIRobotFetchAndEquipItemStack extends AIRobot {