a3\missions_f_curator\mptypes\sectorcontrol\missionflow.fsm contains an error. The "Loop" codeblock reads
//--- Get losing side _losingSideData = [_sides] call bis_fnc_respawnTickets; _losingSide = _losingSideData select 0; _losingSideTickets = _losingSideData select 1; _losingSides = []; { if ([_x,_losingSide] call bis_fnc_areFriendly) then { _losingSides set [count _losingSides,_x]; }; } foreach _sides; //--- Play music _timeLeft = [] call bis_fnc_missionTimeLeft; _noTime = _timeLeft > 0 && _timeLeft < _musicTime; _playMusic = (_losingSideTickets < _musicTickets) || _noTime; _playMusic call bis_fnc_playEndMusic; //--- Time warning if (_noTime && _saidNoTime) then { _saidNoTime = tru_e; //<-- Typo here _message = "SentGenTime"; [ ["generic",[_message],"BIS_fnc_moduleMPTypeSectorControl_missionConversations"], "bis_fnc_missionConversations", _losingSides ] call bis_fnc_mp; }; _time = time + _delay;
whereas it should read
_saidNoTime = true;