mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Redo markers, lost in the merge
This commit is contained in:
@ -9,8 +9,7 @@
|
|||||||
|
|
||||||
// request marker data for JIP
|
// request marker data for JIP
|
||||||
if (isMultiplayer && {!isServer} && {hasInterface}) then {
|
if (isMultiplayer && {!isServer} && {hasInterface}) then {
|
||||||
GVAR(localLogic) = sideLogic createUnit ["Logic", [0,0,0], [], 0, "NONE"];
|
GVAR(localLogic) = (createGroup sideLogic) createUnit ["Logic", [0,0,0], [], 0, "NONE"];
|
||||||
GVAR(localGroup) = createGroup GVAR(localLogic);
|
|
||||||
[QGVAR(sendMarkersJIP), [GVAR(localLogic)]] call EFUNC(common,serverEvent);
|
[QGVAR(sendMarkersJIP), [GVAR(localLogic)]] call EFUNC(common,serverEvent);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ TRACE_3("params",_allMapMarkers,_allMapMarkersProperties);
|
|||||||
false
|
false
|
||||||
} count allMapMarkers;
|
} count allMapMarkers;
|
||||||
|
|
||||||
deleteGroup GVAR(localGroup);
|
private _group = group GVAR(localLogic);
|
||||||
GVAR(localGroup) = nil;
|
|
||||||
deleteVehicle GVAR(localLogic);
|
deleteVehicle GVAR(localLogic);
|
||||||
GVAR(localLogic) = nil;
|
GVAR(localLogic) = nil;
|
||||||
|
deleteGroup _group;
|
||||||
|
Reference in New Issue
Block a user