public void initFirstBot(ModularRobot botAhead, double range)
 {
     this.nextBot = botAhead;
     this.firstBot = true;
     this.range = range;
 }
 public void initBot(ModularRobot botBehind, double range)
 {
     this.nextBot = botBehind;
     this.firstBot = false;
     this.range = range;
 }