Flight Rising: Swap achievements link back to lair in profile section

If the change to achievements also annoys you and you find yourself clicking it... welp, no more

// ==UserScript==
// @name         Flight Rising: Swap achievements link back to lair in profile section
// @author       https://greasyfork.org/en/users/547396
// @description  If the change to achievements also annoys you and you find yourself clicking it... welp, no more
// @namespace    https://greasyfork.org/users/547396
// @match        *://*.flightrising.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=flightrising.com
// @grant        none
// @version      0.2
// ==/UserScript==

(function() {
    'use strict';

    var ach = document.querySelector('#usertab a[href="https://www1.flightrising.com/achievements"');
    var wing_icon = 'https://www1.flightrising.com/static/cms/icons/48.png';

    ach.setAttribute('href', 'https://www1.flightrising.com/lair/');
    ach.innerHTML = '<img src="'+ wing_icon +'"/> Lair';
})();