mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
434 B
Plaintext
22 lines
434 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Remove a condition that gets checked by ace_common_fnc_canInteractWith.
|
|
*
|
|
* Arguments:
|
|
* 0: The conditions id. <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["ID"] call ace_common_fnc_removeCanInteractWithCondition
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_conditionName"];
|
|
|
|
_conditionName = toLowerANSI _conditionName;
|
|
GVAR(InteractionConditions) deleteAt _conditionName;
|