You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever we use password-protected Game Master slots in missions containing MIST, we get a mission script error for line 5291 in the MIST script.
This is the part of MIST that seems to cause the error:
local caSlots = false
local caMSGtoGroup = false
if env.mission.groundControl then -- just to be sure?
for index, value in pairs(env.mission.groundControl) do
if type(value) == 'table' then
for roleName, roleVal in pairs(value) do
for rIndex, rVal in pairs(roleVal) do
if env.mission.groundControl[index][roleName][rIndex] > 0 then
caSlots = true
break
end
end
end
elseif type(value) == 'boolean' and value == true then
caSlots = true
break
end
end
end
Attached is the error message. Do I have to change something in these lines to prevent the error?
Thanks a lot for the help!
The text was updated successfully, but these errors were encountered:
Whenever we use password-protected Game Master slots in missions containing MIST, we get a mission script error for line 5291 in the MIST script.
This is the part of MIST that seems to cause the error:
Attached is the error message. Do I have to change something in these lines to prevent the error?
Thanks a lot for the help!
The text was updated successfully, but these errors were encountered: