ACE3/addons/common/functions/fnc_restoreVariablesJIP.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

30 lines
592 B
Plaintext

/*
* Author: commy2
* Called from respawn eventhandler. Resets all public object namespace variables that are added via FUNC(setVariableJIP).
*
* Arguments:
* 0: Object <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob] call ace_common_fnc_restoreVariablesJIP
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
private _respawnVariables = _unit getVariable ["ACE_respawnVariables", []];
// yes those
_respawnVariables pushBack "ACE_PersistentFunctions";
{
_unit setVariable [_x, _unit getVariable _x, true];
false
} count _respawnVariables;
nil