Fix INFO Macro not in CBA 3.0 (#4320)

This commit is contained in:
PabstMirror 2016-09-02 12:50:23 -05:00 committed by GitHub
parent d3ee125d5e
commit 12de3265b8

View File

@ -298,7 +298,8 @@ enableCamShake true;
// It is possible that CBA_fnc_addPlayerEventHandler has allready been called and run // It is possible that CBA_fnc_addPlayerEventHandler has allready been called and run
// We will NOT get any events for the initial state, so manually set ACE_player // We will NOT get any events for the initial state, so manually set ACE_player
if (!isNull (missionNamespace getVariable ["cba_events_oldUnit", objNull])) then { if (!isNull (missionNamespace getVariable ["cba_events_oldUnit", objNull])) then {
INFO("CBA_fnc_addPlayerEventHandler has already run - manually setting ace_player"); // INFO("CBA_fnc_addPlayerEventHandler has already run - manually setting ace_player"); //ToDo CBA 3.1
diag_log text "[ACE-Common - CBA_fnc_addPlayerEventHandler has already run - manually setting ace_player";
ACE_player = cba_events_oldUnit; ACE_player = cba_events_oldUnit;
}; };