From 777f45a3237c87119eda9c7549d24df4e396ef58 Mon Sep 17 00:00:00 2001 From: Blixibon Date: Mon, 15 Nov 2021 16:22:10 -0600 Subject: [PATCH] Added arm/disarm activities to gravity gun --- sp/src/game/server/hl2/weapon_physcannon.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sp/src/game/server/hl2/weapon_physcannon.cpp b/sp/src/game/server/hl2/weapon_physcannon.cpp index 6585a59c..8a52143c 100644 --- a/sp/src/game/server/hl2/weapon_physcannon.cpp +++ b/sp/src/game/server/hl2/weapon_physcannon.cpp @@ -1474,6 +1474,9 @@ acttable_t CWeaponPhysCannon::m_acttable[] = { ACT_HL2MP_WALK, ACT_HL2MP_WALK_PHYSGUN, false }, { ACT_HL2MP_GESTURE_RANGE_ATTACK2, ACT_HL2MP_GESTURE_RANGE_ATTACK2_PHYSGUN, false }, #endif + + { ACT_ARM, ACT_ARM_RIFLE, false }, + { ACT_DISARM, ACT_DISARM_RIFLE, false }, }; IMPLEMENT_ACTTABLE( CWeaponPhysCannon );