Update vanilla presets

Vanilla commit:

8574fd898d
This commit is contained in:
ebayShopper
2017-02-19 18:56:52 -05:00
parent 9e0c251baf
commit 27bca9a7d9

View File

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