Change stinger in air battles

Do not allow fighting with stingers - when the battle is loaded, the stinger is switched to fight without stingers

// ==UserScript==
// @name         Change stinger in air battles
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  Do not allow fighting with stingers - when the battle is loaded, the stinger is switched to fight without stingers
// @author       You
// @match        https://www.erepublik.com/en/military/battlefield/*
// @grant        none
// ==/UserScript==

var $ = jQuery;

(function() {
    var weaponLink = $("li.q10 img").attr("src");
    if (weaponLink != "/images/icons/industry/2/q10.png")
    {
        $(".weapon_link")[0].click();
    }
})();