ACE3/addons/frag/functions/fnc_addBlackList.sqf

22 lines
352 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Jaynus, NouberNou
* Adds a round to the blacklist (will be ignored).
*
* Arguments:
* 0: Projectile <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bullet] call ace_frag_fnc_addBlackList
*
* Public: No
*/
params ["_round"];
TRACE_1("addBlackList",_round);
GVAR(blackList) pushBack _round;