change an ERROR to WARNING in Markers component

This commit is contained in:
commy2 2018-12-02 11:50:02 +01:00 committed by GitHub
parent ba18d5f748
commit 438e34ac90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;