Merge pull request #1510 from acemod/settingInDebug

Dump settings to debug
This commit is contained in:
PabstMirror 2015-06-04 15:54:29 -05:00
commit 9997b94fb1

View File

@ -48,6 +48,18 @@ if (isNull ace_player) then {"null"} else {animationState ace_player}];
[_text] call _outputText;
_text = format ["
------ACE Settings------"];
[_text] call _outputText;
{
_var = missionNamespace getVariable [(_x select 0), "ERROR: Not Defined"];
_text = format ["%1 - %2", (_x select 0), _var];
[_text] call _outputText;
} forEach EGVAR(common,settings);
_text = format ["
------Array Info (count >= %1)------", MIN_ARRAY_SIZE];
[_text] call _outputText;