mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
306 B
Plaintext
16 lines
306 B
Plaintext
// by commy2 and CAA-Picard
|
|
|
|
#include "script_component.hpp"
|
|
|
|
ACE_Modifier = 0;
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
GVAR(isOpeningDoor) = false;
|
|
|
|
// restore global fire teams for JIP
|
|
{
|
|
_team = _x getVariable [QGVAR(assignedFireTeam), ""];
|
|
if (_team != "") then {_x assignTeam _team};
|
|
} forEach allUnits;
|