mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d1ba153ae8
Close #5835 - Add config to GrenadeCore (IRStrobeBase: GrenadeCore) - Verify array is valid 3d vector in throw.sqf
12 lines
356 B
C++
12 lines
356 B
C++
class CfgAmmo {
|
|
class Default;
|
|
class Grenade: Default {
|
|
GVAR(torqueDirection)[] = {1, 1, 0};
|
|
GVAR(torqueMagnitude) = "(50 + random 100) * selectRandom [1, -1]";
|
|
};
|
|
class GrenadeCore: Default {
|
|
GVAR(torqueDirection)[] = {1, 1, 0};
|
|
GVAR(torqueMagnitude) = "(50 + random 100) * selectRandom [1, -1]";
|
|
};
|
|
};
|