Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in initZones #696

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions A3-Antistasi/functions/init/fn_initZones.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ configClasses (configfile >> "CfgWorlds" >> worldName >> "Names") apply {

if ( (toLower worldName) in ["tanoa", "altis", "chernarus_summer"] ) then
{
_roads = roadsX getVariable [_name, []];
_roads = roadsX getVariable [_nameX, []];
if (count _roads == 0) then {
[2, format ["No roads found for marker %1", _name], _fileName] call A3A_fnc_log;
[2, format ["No roads found for marker %1", _nameX], _fileName] call A3A_fnc_log;
};
_numCiv = server getVariable _nameX;
if (isNil "_numCiv") then
Expand Down