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:
Grim 2023-08-19 02:38:47 -03:00 committed by GitHub
parent 682ae05f59
commit 42101e8fa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,8 +15,12 @@
* Public: Yes
*/
[{
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;
if !(isNumber (_config >> QGVAR(enabled))) then {
["%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];
};
};
}, _this] call CBA_fnc_execNextFrame;