Repair: Fix possible out of bounds setting

Setting "engineerSetting_fullRepair" had an out of bounds default value.
This commit is contained in:
TheMagnetar 2015-09-05 16:30:00 +02:00
parent 41db78b52b
commit 27a0e8f639

View File

@ -57,7 +57,7 @@ class ACE_Settings {
displayName = CSTRING(engineerSetting_fullRepair_name);
description = CSTRING(engineerSetting_fullRepair_description);
typeName = "SCALAR";
value = 3;
value = 2;
values[] = {CSTRING(engineerSetting_anyone), CSTRING(engineerSetting_EngineerOnly), CSTRING(engineerSetting_RepairSpecialistOnly)};
category = ECSTRING(OptionsMenu,CategoryLogistics);
};