buildRoadOnCachedPath(creep: HaulerCreep) {
        // Don't try to build roads in rooms owned by other players.
        if (creep.room.controller && creep.room.controller.owner && !creep.room.isMine()) return false;

        const workParts = creep.getActiveBodyparts(WORK);