BuildCraft 7.1.10

This commit is contained in:
asiekierka 2015-10-13 18:54:52 +02:00
parent 57ea745c6f
commit fefead843b
5 changed files with 4 additions and 6 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.9"
version = "7.1.10"
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

@ -5,4 +5,5 @@ Bugs fixed:
* [#3069, #2865] Fluid pipe extraction speed ~25% lower than intended (asie, mconwa01)
* Filler not changing pattern on parameter change (asie)
* Improvements to robot pathfinding logic (asie, hea3ven)
* Incorrect CoFHAPIProps RF API version (asie)
* Rotated quarry not detecting its own frame (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.9
1.7.10:BuildCraft:7.1.10

View file

@ -68,7 +68,6 @@ import buildcraft.api.boards.RedstoneBoardRobot;
import buildcraft.api.boards.RedstoneBoardRobotNBT;
import buildcraft.api.core.BCLog;
import buildcraft.api.core.BlockIndex;
import buildcraft.api.core.BuildCraftAPI;
import buildcraft.api.core.IZone;
import buildcraft.api.core.SafeTimeTracker;
import buildcraft.api.events.RobotEvent;
@ -121,7 +120,7 @@ public class EntityRobot extends EntityRobotBase implements
public float itemActiveStage = 0;
public long lastUpdateTime = 0;
private SafeTimeTracker expensiveVerificationsTracker = new SafeTimeTracker(10);
private SafeTimeTracker expensiveVerificationsTracker = new SafeTimeTracker(20);
private boolean isMovingOutOfStuck;
private DockingStation currentDockingStation;

View file

@ -10,8 +10,6 @@ package buildcraft.robotics.ai;
import java.util.List;
import net.minecraft.util.AxisAlignedBB;
import buildcraft.api.robots.AIRobot;
import buildcraft.api.robots.EntityRobotBase;