]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Show Tuba in the keybinds input list 1457/head
authorotta8634 <k9wolf@pm.me>
Sun, 9 Feb 2025 07:38:32 +0000 (15:38 +0800)
committerotta8634 <k9wolf@pm.me>
Sun, 9 Feb 2025 07:38:32 +0000 (15:38 +0800)
Previously it wasn't shown, despite having a unique weapon impulse alias (weapon_arc).

qcsrc/menu/xonotic/keybinder.qc

index d1fad82391dc944072ce609126c94cf521fb93df..1a44fe245c2a32544e1d105a0a63ee74d4ae4239 100644 (file)
@@ -85,10 +85,9 @@ void KeyBinds_BuildList()
        KEYBIND_DEF("dropweapon"                            , _("drop weapon / throw nade"));
 
        #define SHOWABLE_WEAPON(w) \
-               (( !(it.spawnflags & (WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_HIDDEN | WEP_FLAG_SUPERWEAPON))) /* normal weapons */ \
-               || ((it.spawnflags & WEP_FLAG_SUPERWEAPON)    && !(it.spawnflags & WEP_FLAG_HIDDEN)) /* non-hidden superweapons */ \
-               || ((it.spawnflags & WEP_FLAG_MUTATORBLOCKED) && !(it.spawnflags & WEP_FLAG_HIDDEN)) /* non-hidden mutator weapons */ \
-               )
+               (!(it.spawnflags & WEP_FLAG_SPECIALATTACK) && \
+               !((it.spawnflags & WEP_FLAG_MUTATORBLOCKED) && (it.spawnflags & WEP_FLAG_HIDDEN)) )
+       // no special attacks, and no hidden mutator-blocked weapons
 
        for (int imp = 1; imp <= 9; ++imp)
        {