Skip to content

Commit

Permalink
Fixed typo for civilian zone marker names (#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Jan 14, 2024
1 parent e27fda1 commit 08ff3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cScripts/functions/civ/fn_civ_init.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private _civZones = [];
{
private _markerName = [_x, 0, 21] call BIS_fnc_trimString;
_markerName = toLower _markerName;
if (_markerName == "cscripts_civilan_zone_") then {
if (_markerName == "cscripts_civilian_zone_") then {
private _density = [_x, 21] call BIS_fnc_trimString;
_density = (_density splitString "_")#0;
if !(_density in ["extream", "high", "medium", "low", "none"]) then {
Expand Down

0 comments on commit 08ff3c9

Please sign in to comment.