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>
27 lines
670 B
Plaintext
27 lines
670 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Handles cleaning up blood objects that have reached the end of their lifetime.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_medical_blood_fnc_cleanupLoop
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
(GVAR(bloodDrops) deleteAt 0) params ["", "_deletedBloodDrop"];
|
|
deleteVehicle _deletedBloodDrop;
|
|
|
|
// Exit the loop if we have cleaned out the array
|
|
if (GVAR(bloodDrops) isEqualTo []) exitWith {};
|
|
|
|
// Wait until the next blood drop in the queue will expire
|
|
(GVAR(bloodDrops) select 0) params ["_expireTime"];
|
|
[FUNC(cleanupLoop), [], _expireTime - CBA_missionTime] call CBA_fnc_waitAndExecute;
|