Skip to content

Commit

Permalink
Fixed an issue regarding the client-side map markers script.
Browse files Browse the repository at this point in the history
  • Loading branch information
Superxpdude committed Mar 17, 2018
1 parent 14b6205 commit 2b5a89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/functions/system/fn_mapMarkersServer.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if ((_this select 0) == 0) exitWith {};
// If the mission is a PVP mission, tell the clients to unhide friendly markers
if ((getMissionConfigValue "XPT_isPVP") == 1) then {
// Persistent execution of the remoteExec as long as the group exists
[[_grpMarker, _x]] remoteExec ["XPT_fnc_mapMarkersClient", 0, _x];
[_grpMarker, _x] remoteExec ["XPT_fnc_mapMarkersClient", 0, _x];
};
} else {
// If the group already has a marker, just update it
Expand Down

0 comments on commit 2b5a89c

Please sign in to comment.