ACE3/addons/csw/functions/fnc_ai_handleFired.sqf
johnb432 56eae4060c
CSW - Improve function headers & comments (#10149)
Code formatting changes from 9234
2024-07-27 19:42:31 +02:00

24 lines
475 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: PabstMirror
* Handles AI Fired EH.
*
* Arguments:
* Fired EH
*
* Return Value:
* None
*
* Public: No
*/
params ["_vehicle", "", "", "", "", "", "", "_gunner"];
TRACE_1("firedEH:",_this);
if (someAmmo _vehicle) exitWith {};
if ((!local _gunner) || {[_gunner] call EFUNC(common,isPlayer)}) exitWith {};
TRACE_2("need ammo",someAmmo _vehicle,magazinesAllTurrets _vehicle);
[_vehicle, _gunner] call FUNC(ai_reload);