From 7db9f51f9d0650644c0610db733c126e327cccb1 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 30 Sep 2018 21:41:40 +1000 Subject: [PATCH] Fix arc preventing switching weapons when you change weapons with the button held --- qcsrc/common/weapons/weapon/arc.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/weapons/weapon/arc.qc b/qcsrc/common/weapons/weapon/arc.qc index c9d12fa67..56a48f2f3 100644 --- a/qcsrc/common/weapons/weapon/arc.qc +++ b/qcsrc/common/weapons/weapon/arc.qc @@ -236,8 +236,8 @@ void W_Arc_Beam_Think(entity this) { // note: this doesn't force the switch W_SwitchToOtherWeapon(own, weaponentity); - own.(weaponentity).arc_BUTTON_ATCK_prev = false; // hax } + own.(weaponentity).arc_BUTTON_ATCK_prev = false; // allow switching weapons delete(this); return; } -- 2.39.2