This commit is contained in:
eraser1 2016-07-11 18:14:45 -05:00
parent f34bda950d
commit 8e5c61ebf4
2 changed files with 2 additions and 4 deletions

View File

@ -203,10 +203,9 @@ if (DMS_ShowDifficultyColorLegend) then
};
private _dot = createMarker [format ["DMS_MissionMarker_Difficulty_%1",_difficulty],_pos];
_dot setMarkerColor "ColorWhite";
_dot setMarkerType "mil_dot";
_dot setMarkerAlpha 0.5;
_dot setMarkerType _markerType;
_dot setMarkerText _difficulty;
_dot setMarkerAlpha 0.5;
} forEach ["hardcore","difficult","moderate","easy"];
};

View File

@ -99,7 +99,6 @@ if (DMS_ShowMarkerCircle) then
};
private _dot = createMarker [format ["DMS_MissionMarkerDot%1_%2",_num,round(time)], _pos];
_dot setMarkerColor "ColorBlack";
_dot setMarkerType _markerType;
_dot setMarkerText _text;