ACE3/addons/common/functions/fnc_addCuratorUnloadEventhandler.sqf
2015-01-13 20:56:02 +01:00

14 lines
308 B
Plaintext

// by commy2
#include "script_component.hpp"
private "_dlg";
disableSerialization;
_dlg = ctrlParent _this;
_dlg displayAddEventHandler ["unload", {
if (_this select 1 == 1) then {
[missionnamespace getvariable ["BIS_fnc_initCuratorAttributes_target", objNull]] call FUNC(fixCrateContent);
};
}];