mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
37 lines
954 B
Plaintext
37 lines
954 B
Plaintext
// Trenches dig/remove durations
|
|
[
|
|
QGVAR(smallEnvelopeDigDuration),
|
|
"TIME",
|
|
[LSTRING(SmallEnvelopeDigDuration_DisplayName), LSTRING(SmallEnvelopeDigDuration_Description)],
|
|
LSTRING(Category),
|
|
[5, 600, 20],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(smallEnvelopeRemoveDuration),
|
|
"TIME",
|
|
[LSTRING(SmallEnvelopeRemoveDuration_DisplayName), LSTRING(SmallEnvelopeRemoveDuration_Description)],
|
|
LSTRING(Category),
|
|
[5, 600, 12],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(bigEnvelopeDigDuration),
|
|
"TIME",
|
|
[LSTRING(BigEnvelopeDigDuration_DisplayName), LSTRING(BigEnvelopeDigDuration_Description)],
|
|
LSTRING(Category),
|
|
[5, 600, 25],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(bigEnvelopeRemoveDuration),
|
|
"TIME",
|
|
[LSTRING(BigEnvelopeRemoveDuration_DisplayName), LSTRING(BigEnvelopeRemoveDuration_Description)],
|
|
LSTRING(Category),
|
|
[5, 600, 15],
|
|
true
|
|
] call CBA_fnc_addSetting;
|