diff --git a/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp b/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp index 88bf57be0..ef2f020a4 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp @@ -426,6 +426,9 @@ class CfgVehicles #include "Boat\smallboat.hpp" #include "Boat\JetSkiYanahui.hpp" #include "Boat\Seafox.hpp" + + //Epoch Parachute + #include "Parachute.hpp" //Includes all Building Stuff //Houses diff --git a/SQF/dayz_code/Configs/CfgVehicles/Parachute.hpp b/SQF/dayz_code/Configs/CfgVehicles/Parachute.hpp new file mode 100644 index 000000000..30d0d2afa --- /dev/null +++ b/SQF/dayz_code/Configs/CfgVehicles/Parachute.hpp @@ -0,0 +1,4 @@ +class ParachuteBase; +class ParachuteWest: ParachuteBase { + model = "\z\addons\dayz_epoch_v\vehicles\chute\PARA.p3d"; +}; \ No newline at end of file