From bc9e61cc67ad071ba0685268c64c6774557e1fcb Mon Sep 17 00:00:00 2001 From: marcin212 Date: Fri, 6 Mar 2015 17:35:48 +0100 Subject: [PATCH] Fix block break robots going into sleep mode after successfully harvesting block. Close #2528 --- common/buildcraft/robots/boards/BoardRobotGenericBreakBlock.java | 1 - 1 file changed, 1 deletion(-) diff --git a/common/buildcraft/robots/boards/BoardRobotGenericBreakBlock.java b/common/buildcraft/robots/boards/BoardRobotGenericBreakBlock.java index 96d7f642..f91a326b 100644 --- a/common/buildcraft/robots/boards/BoardRobotGenericBreakBlock.java +++ b/common/buildcraft/robots/boards/BoardRobotGenericBreakBlock.java @@ -108,7 +108,6 @@ public abstract class BoardRobotGenericBreakBlock extends RedstoneBoardRobot { startDelegateAI(new AIRobotBreak(robot, indexStored)); } else if (ai instanceof AIRobotBreak) { releaseBlockFound(); - startDelegateAI(new AIRobotGotoSleep(robot)); } }