From 37af0b1325cdc2c3af13a3e8cb27a311beb0642e Mon Sep 17 00:00:00 2001 From: Chris Cardozo Date: Sat, 26 Sep 2020 00:43:25 -0400 Subject: [PATCH] fixed a typo --- .../Compiles/Missions/GMS_fnc_spawnRandomLandscape.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_spawnRandomLandscape.sqf b/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_spawnRandomLandscape.sqf index 3ff61d0..d666355 100644 --- a/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_spawnRandomLandscape.sqf +++ b/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_spawnRandomLandscape.sqf @@ -28,7 +28,7 @@ private _hiddenObjs = []; private _shrubs = nearestTerrainObjects[_spawnPos,["TREE", "SMALL TREE", "BUSH","FENCE", "WALL","ROCK"], sizeOf _objClassName]; if !(_shrubs isEqualTo []) then { - _hiddenOjbs append _shrubs; + _hiddenObjs append _shrubs; {_x hideObjectGlobal true} forEach _shrubs; }; };