From 27bca9a7d90b4d84a7db2842653a815273683323 Mon Sep 17 00:00:00 2001 From: ebayShopper Date: Sun, 19 Feb 2017 18:56:52 -0500 Subject: [PATCH] Update vanilla presets Vanilla commit: https://github.com/DayZMod/DayZ/commit/8574fd898d98581384a4e1601c90df6d34821f5b --- SQF/dayz_code/init/variables.sqf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/init/variables.sqf b/SQF/dayz_code/init/variables.sqf index 49dd60954..1f115a6bf 100644 --- a/SQF/dayz_code/init/variables.sqf +++ b/SQF/dayz_code/init/variables.sqf @@ -423,9 +423,6 @@ if(isNil "dayz_townGenerator") then { if(isNil "dayz_townGeneratorBlackList") then { dayz_townGeneratorBlackList = []; // Town generator will not spawn junk within 150m of these positions. }; -if(isNil "dayz_enableFlies") then { - dayz_enableFlies = true; // Enable flies on dead bodies (negatively impacts FPS). -}; //Replace server individual settings with ranked settings if(isNil "dayz_presets") then { dayz_presets = "Vanilla"; }; @@ -443,6 +440,7 @@ switch (dayz_presets) do { if(isNil "dayz_temperature_override") then { dayz_temperature_override = true; }; if(isNil "dayz_nutritionValuesSystem") then { dayz_nutritionValuesSystem = false; }; if(isNil "dayz_classicBloodBagSystem") then { dayz_classicBloodBagSystem = false; }; + if(isNil "dayz_enableFlies") then { dayz_enableFlies = true; }; }; case "Classic": { //Classic dayz_enableGhosting = false; //Enable disable the ghosting system. @@ -456,6 +454,7 @@ switch (dayz_presets) do { dayz_temperature_override = true; // Set to true to disable all temperature changes. dayz_nutritionValuesSystem = false; //Enables nutrition system dayz_classicBloodBagSystem = true; //Enables one type of bloodbag + dayz_enableFlies = true; //Enables flies spawning on death }; case "Elite": { //Elite dayz_enableGhosting = true; //Enable disable the ghosting system. @@ -469,6 +468,7 @@ switch (dayz_presets) do { dayz_temperature_override = false; // Set to true to disable all temperature changes. dayz_nutritionValuesSystem = true; //Enables nutrition system dayz_classicBloodBagSystem = false; //Enables one type of bloodbag + dayz_enableFlies = true; //Enables flies spawning on death }; default { //Vanilla dayz_enableGhosting = true; //Enable disable the ghosting system. @@ -482,6 +482,7 @@ switch (dayz_presets) do { dayz_temperature_override = false; // Set to true to disable all temperature changes. dayz_nutritionValuesSystem = true; //Enables nutrition system dayz_classicBloodBagSystem = false; //Enables one type of bloodbag + dayz_enableFlies = true; //Enables flies spawning on death }; };