From c22ae9e5f447b866b5abb3d400aac8203e96dd2b Mon Sep 17 00:00:00 2001 From: AirwavesMan Date: Fri, 21 Aug 2020 22:41:10 +0200 Subject: [PATCH] Fix CZ550 shadow bug This switches back to the old Arma 2 model. If the acutal CZ550_DZ model is fixed by DayZ Mod it can be replaced. --- SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ550.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ550.hpp b/SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ550.hpp index faf1d4160..bf9cae62b 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ550.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ550.hpp @@ -1,8 +1,10 @@ class CZ550_DZ : Huntingrifle { - model = "z\addons\dayz_communityweapons\CZ550\CZ550.p3d"; + //model = "z\addons\dayz_communityweapons\CZ550\CZ550.p3d"; // has currently a shadow problem + model = "\ca\weapons2\huntingrifle\huntingrifle"; magazines[] = {5Rnd_17HMR}; + /* The normal version of the CZ550 has no correct iron sight //CZ550_SCOPE optics = true; modelOptics = "\ca\weapons\2Dscope_Hunter_12"; @@ -28,4 +30,5 @@ class CZ550_DZ : Huntingrifle }; }; //CZ550_SCOPE end + */ }; \ No newline at end of file