mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Repair: Fix possible out of bounds setting
Setting "engineerSetting_fullRepair" had an out of bounds default value.
This commit is contained in:
parent
41db78b52b
commit
27a0e8f639
@ -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);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user