Skip to content

Commit

Permalink
Merge pull request #6714 from acemod/markers-server-log-warning
Browse files Browse the repository at this point in the history
change an ERROR to WARNING in Markers component
  • Loading branch information
commy2 authored Dec 2, 2018
2 parents ba18d5f + 438e34a commit b055a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/markers/XEH_postInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ GVAR(currentMarkerConfigName) = "";
private _index = (GETGVAR(allMapMarkers,[])) find _marker; // case-sensitive, but should be fine

if (_index < 0) exitWith {
ERROR_1("Could not find data for %1", _marker);
WARNING_1("Could not find data for %1", _marker);
};

private _data = GVAR(allMapMarkersProperties) select _index;
Expand Down

0 comments on commit b055a0f

Please sign in to comment.