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 }; };