mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8d83982d86
* add improvements from #8763 * review changes * writing is hard Co-authored-by: BaerMitUmlaut <BaerMitUmlaut@users.noreply.github.com> * missing ; Co-authored-by: BaerMitUmlaut <BaerMitUmlaut@users.noreply.github.com>
20 lines
307 B
Plaintext
20 lines
307 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;
|