mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
missed underscore
This commit is contained in:
parent
a9a5a4a9ba
commit
210a876c0c
@ -59,7 +59,7 @@ if (GVAR(spallEnabled) && {_shouldSpall}) then
|
|||||||
{
|
{
|
||||||
params ["_proj", "_hitObj", "",
|
params ["_proj", "_hitObj", "",
|
||||||
"_posASL", "_vel", "", "",
|
"_posASL", "_vel", "", "",
|
||||||
"", "surfType"
|
"", "_surfType"
|
||||||
];
|
];
|
||||||
private _shotPrnt = getShotParents _proj;
|
private _shotPrnt = getShotParents _proj;
|
||||||
private _ammo = typeOf _proj;
|
private _ammo = typeOf _proj;
|
||||||
@ -67,12 +67,12 @@ if (GVAR(spallEnabled) && {_shouldSpall}) then
|
|||||||
if (isServer) then {
|
if (isServer) then {
|
||||||
[
|
[
|
||||||
LINKFUNC(doSpallMomentum),
|
LINKFUNC(doSpallMomentum),
|
||||||
[_proj, _hitObj, _posASL, _vel, surfType, _shotPrnt, _ammo, _vUp]
|
[_proj, _hitObj, _posASL, _vel, _surfType, _shotPrnt, _ammo, _vUp]
|
||||||
] call CBA_fnc_execNextFrame;
|
] call CBA_fnc_execNextFrame;
|
||||||
} else {
|
} else {
|
||||||
[
|
[
|
||||||
QGVAR(spall_eh),
|
QGVAR(spall_eh),
|
||||||
[_proj, _hitObj, _posASL, _vel, surfType, _shotPrnt, _ammo, _vUp]
|
[_proj, _hitObj, _posASL, _vel, _surfType, _shotPrnt, _ammo, _vUp]
|
||||||
] call CBA_fnc_serverEvent;
|
] call CBA_fnc_serverEvent;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user