mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
20 lines
310 B
Plaintext
20 lines
310 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: BaerMitUmlaut
|
|
* Removes a duty factor.
|
|
*
|
|
* Arguments:
|
|
* 0: Factor ID <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["ID"] call ace_advanced_fatigue_fnc_removeDutyFactor
|
|
*
|
|
* Public: No
|
|
*/
|
|
params [["_id", "", [""]]];
|
|
|
|
GVAR(dutyList) deleteAt _id;
|