Merge pull request #3767 from alganthe/zeus_fix

Add new zeus addObjects setting to settings module (#2451)
This commit is contained in:
Glowbal 2016-05-08 13:41:13 +02:00
commit 220b8b6352
2 changed files with 8 additions and 2 deletions

View File

@ -31,9 +31,9 @@ class ACE_Settings {
values[] = {"$STR_A3_OPTIONS_DISABLED", CSTRING(revealMines_partial), CSTRING(revealMines_full)};
};
class GVAR(autoAddObjects) {
typeName = "BOOL";
value = 0;
displayName = CSTRING(AddObjectsToCurator);
description = CSTRING(AddObjectsToCurator_desc);
value = 0;
typeName = "BOOL";
};
};

View File

@ -71,6 +71,12 @@ class CfgVehicles {
};
};
};
class GVAR(autoAddObjects) {
displayName = CSTRING(AddObjectsToCurator);
description = CSTRING(AddObjectsToCurator_desc);
typeName = "BOOL";
defaultValue = 0;
};
};
class ModuleDescription {
description = CSTRING(Settings_Description);