From d92e0f65bea216b23205e9920132dd11e4912be8 Mon Sep 17 00:00:00 2001 From: Grahame Date: Thu, 19 Oct 2017 11:23:14 -0400 Subject: [PATCH] Update EPOCH_fnc_createLocalMarkerSet.sqf Added EPOCH_ to the name of all local Epoch markers --- .../compile/functions/EPOCH_fnc_createLocalMarkerSet.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_code/compile/functions/EPOCH_fnc_createLocalMarkerSet.sqf b/Sources/epoch_code/compile/functions/EPOCH_fnc_createLocalMarkerSet.sqf index c3ce0a66..4fb457d0 100644 --- a/Sources/epoch_code/compile/functions/EPOCH_fnc_createLocalMarkerSet.sqf +++ b/Sources/epoch_code/compile/functions/EPOCH_fnc_createLocalMarkerSet.sqf @@ -58,7 +58,7 @@ if(isNil {Epoch_markerCounter})then{Epoch_markerCounter = 0}; { // double check all, use these defaults if not defined _x params [ - ["_mName",format["marker_%1", Epoch_markerCounter]], + ["_mName",format["EPOCH_marker_%1", Epoch_markerCounter]], ["_mShape","ICON"], ["_mType","hd_dot"], ["_mColor","ColorRed"], @@ -97,4 +97,4 @@ if(isNil {Epoch_markerCounter})then{Epoch_markerCounter = 0}; if(_mName isEqualTo (format["marker_%1", Epoch_markerCounter]))then{ Epoch_markerCounter = Epoch_markerCounter + 1; }; -}forEach _markerArray; \ No newline at end of file +}forEach _markerArray;