From 3ea416a9d7ad899f5c670b63248e9bea35be4f34 Mon Sep 17 00:00:00 2001 From: SGanthony Date: Tue, 21 Jan 2014 08:29:23 -0600 Subject: [PATCH] Fixed Upgraded Black SUV Glass Armor Armor of the upgraded black SUV (SUV_TK_CIV_EP1_DZE1) was less than when not upgraded, and did not match the the other upgraded SUVs. --- SQF/dayz_code/Configs/CfgVehicles/LAND/SUV.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgVehicles/LAND/SUV.hpp b/SQF/dayz_code/Configs/CfgVehicles/LAND/SUV.hpp index f16192c73..c8b2ad799 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/LAND/SUV.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/LAND/SUV.hpp @@ -457,19 +457,19 @@ class SUV_TK_CIV_EP1_DZE2: SUV_TK_CIV_EP1_DZE1 }; class HitGlass1: HitGlass1 { - armor = 0.1; + armor = 2; }; class HitGlass2: HitGlass2 { - armor = 0.1; + armor = 2; }; class HitGlass3: HitGlass3 { - armor = 0.1; + armor = 2; }; class HitGlass4: HitGlass4 { - armor = 0.1; + armor = 2; }; }; };