From 8d80d8091ab235e9909117c3735d9aba8c86d26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brostr=C3=B6m=2EA=20=7C=20Evul?= Date: Sun, 14 Jan 2024 17:31:16 +0100 Subject: [PATCH] Added support of usage of better name "cScripts_Staging_Zone" instead of "zone_staging" (#1116) --- cScripts/functions/init/fn_init_staging.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cScripts/functions/init/fn_init_staging.sqf b/cScripts/functions/init/fn_init_staging.sqf index 7daf5d949..8374dcc8b 100644 --- a/cScripts/functions/init/fn_init_staging.sqf +++ b/cScripts/functions/init/fn_init_staging.sqf @@ -23,9 +23,10 @@ private _stagingZoneMarkers = []; { private _markerName = [_x, 0, 11] call BIS_fnc_trimString; _markerName = toLower _markerName; - if (_markerName in ["zone_staging", "respawn_west"]) then { + if (_markerName in ["zone_staging", "respawn_west", "cscripts_staging_zone"]) then { private _type = markerShape _x; private _pos = getMarkerPos _x; + _x setMarkerAlpha 0; _stagingZoneMarkers append [[_x, _type, _pos]]; }; } forEach allMapMarkers;