Error in verifyTables.sqf

Phyrstorm

Member
There appears to be an error with table verification. The below shows up in my RPT log and no ground AI spawns from static/custom spawns. Vehicles and heli's still spawn in however. I noticed that the tale end is about launcher types so I've tried it with launchers in that list and without with no change. I disabled the verifyTables option in the dzai_config and ground troops are spawning now.

16:09:44 Error in expression <uncherTypes"];

_verified = [];

{
if (!isNil (missionNamespace getVariable _x))>
16:09:44 Error position: <isNil (missionNamespace getVariable _x))>
16:09:44 Error isnil: Type Array, expected String,code
16:09:44 File z\addons\dayz_server\DZAI\scripts\verifyTables.sqf, line 17
 
Change line 17 to this:

Code:
if ((typeName (missionNamespace getVariable _x)) == "ARRAY") then {

I'll be uploading a hotfix to address this error as well as something else soon. Thanks for reporting this.
 
Back
Top