From 45e9c070c5a31364559be6d6b8bf640307dc3188 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Sun, 20 Jul 2025 21:09:29 +0300 Subject: [PATCH] Increase marine run speed with Devastator equipped from 70% to 90% 70% seems to be too slow causing players to often switch to secondary gun to run faster and only switch to devastator when shooting. For reference, Autogun has 80%, minigun has 95%. Note the marine speeed when shooting with Devastator remains 30% as it was. --- src/game/shared/swarm/asw_weapon_devastator_shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/shared/swarm/asw_weapon_devastator_shared.cpp b/src/game/shared/swarm/asw_weapon_devastator_shared.cpp index e05a50cb4..1210f9f94 100644 --- a/src/game/shared/swarm/asw_weapon_devastator_shared.cpp +++ b/src/game/shared/swarm/asw_weapon_devastator_shared.cpp @@ -92,7 +92,7 @@ int CASW_Weapon_Devastator::GetWeaponSubSkillId() float CASW_Weapon_Devastator::GetMovementScale() { - return ShouldMarineMoveSlow() ? 0.3f : 0.7f; + return ShouldMarineMoveSlow() ? 0.3f : 0.9f; } #ifndef CLIENT_DLL