add permissions detection to AIRobotPumpBlock

This commit is contained in:
asiekierka 2014-11-18 14:45:05 +01:00
parent 5c0fa1fd34
commit ee0c036f19

5
common/buildcraft/core/robots/AIRobotPumpBlock.java Executable file → Normal file
View file

@ -39,6 +39,11 @@ public class AIRobotPumpBlock extends AIRobot {
robot.aimItemAt(blockToPump.x, blockToPump.y, blockToPump.z);
}
@Override
public void preempt(AIRobot ai) {
super.preempt(ai);
}
@Override
public void update() {
if (waited < 40) {