reduced distance required for docking

This commit is contained in:
SpaceToad 2014-08-13 22:27:25 +02:00
parent 81095c86b4
commit d084cb3bbd

View file

@ -45,9 +45,9 @@ public class AIRobotGotoStation extends AIRobot {
} else {
if (station.take(robot)) {
startDelegateAI(new AIRobotGotoBlock(robot,
station.x() + station.side().offsetX * 2,
station.y() + station.side().offsetY * 2,
station.z() + station.side().offsetZ * 2));
station.x() + station.side().offsetX,
station.y() + station.side().offsetY,
station.z() + station.side().offsetZ));
} else {
terminate();
}