From d1d625229986e9536db96c14f4c05d2b46101097 Mon Sep 17 00:00:00 2001 From: esteldunedain Date: Fri, 3 Apr 2015 13:50:47 -0300 Subject: [PATCH] Nerf the backblast damage of the Titan and NLAW, adopting standard values for soft-launch launchers from the AGM_Compatibility project --- addons/overpressure/CfgWeapons.hpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/addons/overpressure/CfgWeapons.hpp b/addons/overpressure/CfgWeapons.hpp index 5880795ee2..e9170a4b2e 100644 --- a/addons/overpressure/CfgWeapons.hpp +++ b/addons/overpressure/CfgWeapons.hpp @@ -17,14 +17,16 @@ class CfgWeapons { }; class launch_Titan_short_base: launch_Titan_base { - GVAR(angle) = 40; - GVAR(range) = 8; + // Titan is a soft-launch launcher + GVAR(angle) = 30; + GVAR(range) = 2; GVAR(damage) = 0.5; }; class launch_NLAW_F: Launcher_Base_F { - GVAR(angle) = 40; - GVAR(range) = 5; + // NLAW is a soft-launch launcher + GVAR(angle) = 30; + GVAR(range) = 2; GVAR(damage) = 0.6; };