ACE3/addons/repair/ACE_Settings.hpp

38 lines
984 B
C++

// Warning: do not remove without handling wheelRepairRequiredItems's _values config on line 32 [used in repair/canRepair]
class ACE_Settings {
class GVAR(displayTextOnRepair) {
movedToSQF = 1;
};
class GVAR(engineerSetting_repair) {
movedToSQF = 1;
};
class GVAR(engineerSetting_wheel) {
movedToSQF = 1;
};
class GVAR(repairDamageThreshold) {
movedToSQF = 1;
};
class GVAR(repairDamageThreshold_engineer) {
movedToSQF = 1;
};
class GVAR(consumeItem_toolKit) {
movedToSQF = 1;
};
class GVAR(fullRepairLocation) {
movedToSQF = 1;
};
class GVAR(engineerSetting_fullRepair) {
movedToSQF = 1;
};
class GVAR(addSpareParts) {
movedToSQF = 1;
};
class GVAR(wheelRepairRequiredItems) {
movedToSQF = 1;
_values[] = {{}, {"ToolKit"}};
};
class GVAR(autoShutOffEngineWhenStartingRepair) {
movedToSQF = 1;
};
};