diff --git a/addons/markers/functions/fnc_loop.sqf b/addons/markers/functions/fnc_loop.sqf index 0c6beac8..710f7c76 100644 --- a/addons/markers/functions/fnc_loop.sqf +++ b/addons/markers/functions/fnc_loop.sqf @@ -50,12 +50,14 @@ if (playerSide isEqualTo WEST) then { _marker = [_killer, _hidden] call FUNC(createKillerMarker); } else { _marker setMarkerPosLocal (position _killer); - }; - if (_hidden) then { - _marker setMarkerColorLocal "ColorGreen"; + if (_hidden) then { + _marker setMarkerColorLocal "ColorGreen"; + } else { + _marker setMarkerColorLocal "ColorRed"; + }; }; } else { - if !(playerSide isEqualTo EAST && {!(_marker isEqualTo "")}) then { + if !(_marker isEqualTo "") then { [_killer] call FUNC(deleteUnitMarker); }; };