mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fastroping - Fix equipping FRIES during vehicle init (#9299)
* delete fries with vehicle * FUNCK -> FUNC * Delay 1 frame so setVar won't fail if ran before initpost --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
This commit is contained in:
parent
682ae05f59
commit
42101e8fa2
@ -15,8 +15,12 @@
|
|||||||
* Public: Yes
|
* Public: Yes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
[{
|
||||||
params ["_vehicle"];
|
params ["_vehicle"];
|
||||||
|
|
||||||
|
if (!alive _vehicle) exitWith { WARNING_1("bad vehicle %1",_this); };
|
||||||
|
if (alive (_vehicle getVariable [QGVAR(FRIES),objNull])) exitWith { WARNING_1("already equiped %1",_this); };
|
||||||
|
|
||||||
private _config = configOf _vehicle;
|
private _config = configOf _vehicle;
|
||||||
if !(isNumber (_config >> QGVAR(enabled))) then {
|
if !(isNumber (_config >> QGVAR(enabled))) then {
|
||||||
["%1 has not been configured for ACE_Fastroping.", getText (_config >> "displayName")] call BIS_fnc_error;
|
["%1 has not been configured for ACE_Fastroping.", getText (_config >> "displayName")] call BIS_fnc_error;
|
||||||
@ -27,3 +31,4 @@ if !(isNumber (_config >> QGVAR(enabled))) then {
|
|||||||
_vehicle setVariable [QGVAR(FRIES), _fries, true];
|
_vehicle setVariable [QGVAR(FRIES), _fries, true];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
}, _this] call CBA_fnc_execNextFrame;
|
||||||
|
Loading…
Reference in New Issue
Block a user