buildNearby(creep: HaulerCreep): boolean {
        const workParts = creep.getActiveBodyparts(WORK);
        const needsBuilding = creep.pos.findClosestByRange(FIND_MY_CONSTRUCTION_SITES, {
            filter: site => site.structureType === STRUCTURE_CONTAINER || site.structureType === STRUCTURE_ROAD,
        });