Arma 3 Version: 1.78.143717 (stable)
CBA Version: 3.4.1.170912 (stable)
ACE3 Version: 3.11.0 (stable)
Mods:
- CBA_A3
- ace
Description:
Steps to reproduce:
Where did the issue occur?
Placed Modules:
RPT log file:
16:39:38 Error in expression < _activeThrowable;
private _torqueDir = vectorNormalized (getArray (_config >> ">
16:39:38 Error position: <vectorNormalized (getArray (_config >> ">
16:39:38 Error 0 elements provided, 3 expected
16:39:38 File z\ace\addons\advanced_throwing\functions\fnc_throw.sqf, line 39
I am assuming those IR grenades don't inherit from Grenade.
Should add default torque to CA_Magazine to fix this for everything else that might not inherit from Grenade either.
class B_IR_Grenade: CA_Magazine //inherits 19 parameters from bin\config.bin/CfgMagazines/CA_Magazine, sources - ["A3_Weapons_F"]
class O_IR_Grenade: B_IR_Grenade //inherits 14 parameters from bin\config.bin/CfgMagazines/B_IR_Grenade, sources - ["A3_Weapons_F"]
class I_IR_Grenade: B_IR_Grenade //inherits 14 parameters from bin\config.bin/CfgMagazines/B_IR_Grenade, sources - ["A3_Weapons_F"]
Thanks!
Most helpful comment
Should add default torque to
CA_Magazineto fix this for everything else that might not inherit fromGrenadeeither.