From 05b2f15e93f94b260711062622aa79746a2309ae Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Tue, 16 Feb 2016 12:44:02 -0500 Subject: [PATCH] Fix upgraded VWGolf maxSpeed Thanks @McKeighan https://github.com/vbawol/DayZ-Epoch/pull/1530 --- SQF/dayz_code/Configs/CfgVehicles/LAND/VWGolf.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgVehicles/LAND/VWGolf.hpp b/SQF/dayz_code/Configs/CfgVehicles/LAND/VWGolf.hpp index 265cb00fd..1c7ff17ad 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/LAND/VWGolf.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/LAND/VWGolf.hpp @@ -494,7 +494,7 @@ class VWGolf : Car { // Performance 1 class VWGolf_DZE1: VWGolf { - maxspeed = 150; // max engine limit 125-130 + maxSpeed = 260; // VW maxspeed from above =241 terrainCoef = 2.5; class Upgrades { @@ -565,5 +565,5 @@ class VWGolf_DZE3: VWGolf_DZE2 { // Fuel 4 class VWGolf_DZE4: VWGolf_DZE3 { - fuelCapacity = 210; // car 100 + fuelCapacity = 150; // car 100 };