fixed zeus addobjects

The module part in CfgVehicles.hpp was missing.

Signed-off-by: alganthe <alganthe@live.fr>
This commit is contained in:
alganthe 2015-09-16 06:20:05 +02:00
parent 1ea1094a73
commit 02faf0a104
2 changed files with 7 additions and 3 deletions

View File

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

View File

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