Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into Frag-public-black…
Browse files Browse the repository at this point in the history
…list-functions
  • Loading branch information
lambdatiger committed Sep 18, 2024
2 parents 3974a06 + 7cfdaa7 commit a1b2231
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions addons/frag/functions/fnc_addBlacklist.sqf
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
#include "..\script_component.hpp"
/*
* Author: Jaynus, NouberNou, Lambda.Tiger
* Author: Jaynus, NouberNou, Lambda.Tiger
* Adds a round to the blacklist (will be ignored) and removes any ace_frag event handlers added to it.
* Once blacklisted a projectile can not be "unblacklisted."
* Once blacklisted a projectile can not be "unblacklisted."
*
* Arguments:
* 0: Projectile to be blacklisted <OBJECT>
* 0: Projectile to be blacklisted <OBJECT>
*
* Return Value:
* Was the projectile blacklisted <BOOL>
* Was the projectile blacklisted <BOOL>
*
* Example:
* [_projectile] call ace_frag_fnc_addBlackList
*
* Public: Yes
* Public: Yes
*/

params [["_projectile", objNull, [objNull]]];
params [["_projectile", objNull, [objNull]]];
TRACE_2("addBlackList",_projectile,typeOf projectile);

Expand Down

0 comments on commit a1b2231

Please sign in to comment.