//Take a decision
currentAction.setAction(Action.BuildABridge);
//output = this.wanderBehaviour.runWander(position, orientation, linearSpeed, getMaxLinear(), angularSpeed, getMaxAngular());
output = new SteeringBehaviourOutput();
output.setLinear(1, 0);
output.setAngular(0);
// Send the behaviour output to the environment
if (output!=null) {