mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
311 B
Plaintext
19 lines
311 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Handles treatment via surgical kit (locally).
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_target", "_caller"];
|
|
_caller = _this select 0;
|
|
_target = _this select 1;
|
|
|
|
if (alive _target) exitwith {
|
|
|
|
_target setvariable [QGVAR(bandagedWounds), [], true];
|
|
|
|
};
|