mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b2f4b8ea20
* Cleanup medical settings * Fix extra [ * Allow giving IV/blood to self by default * Medical Blood - Settings improvements and cleanup (#7069) * Add more blood settings and cleanup * Fix include before header * Update addons/medical_blood/functions/fnc_init.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Disable debug * Cleanup moved settings * Fix remaining setting descriptions
17 lines
559 B
Plaintext
17 lines
559 B
Plaintext
[
|
|
QGVAR(painEffectType),
|
|
"LIST",
|
|
[LSTRING(PainEffectType_DisplayName), LSTRING(PainEffectType_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
[[0, 1], [LSTRING(PainEffectType_WhiteFlashing), LSTRING(PainEffectType_PulsingBlur)], 0],
|
|
false,
|
|
{
|
|
if (isNil QGVAR(ppPain)) exitWith {
|
|
TRACE_1("painEffectType setting - before postInit",_this);
|
|
};
|
|
|
|
TRACE_1("painEffectType setting - resetting effect",_this);
|
|
[true] call FUNC(initEffects);
|
|
}
|
|
] call CBA_Settings_fnc_init;
|