function getTower(creep) {
  if (!creep.data.tower) {
    const structures = creep.pos.findInRange(FIND_MY_STRUCTURES, 1, {filter: {structureType: STRUCTURE_TOWER}});
    if (structures.length === 0) {
      return;