mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
281 B
Plaintext
17 lines
281 B
Plaintext
/*
|
|
* Author: KoffeinFlummi
|
|
*
|
|
* Because CBA's EHs sucks.
|
|
*
|
|
* Arguments:
|
|
* Init EH
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*/
|
|
|
|
_vehicle = _this select 0;
|
|
if (_vehicle isKindOf "CAManBase") exitWith {};
|
|
|
|
_vehicle addEventHandler ["HandleDamage", {_this call AGM_Armour_fnc_handleDamage}];
|