mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
changed some WARNINGs to TRACEs
This commit is contained in:
parent
596240a57d
commit
990667b24b
@ -22,7 +22,7 @@ if (isNil "_ammo" ||
|
||||
{_ammo isEqualTo "" ||
|
||||
{isNil "_projectile" ||
|
||||
{isNull _projectile}}}) exitWith {
|
||||
WARNING("bad ammo or projectile");
|
||||
TRACE_2("bad ammo or projectile",_projectile,_ammo);
|
||||
};
|
||||
|
||||
/******* _shouldFrag format *****/
|
||||
@ -53,8 +53,11 @@ if (GVAR(spallEnabled) && {_shouldSpall}) then
|
||||
{_projectile addEventHandler [
|
||||
"HitPart",
|
||||
{
|
||||
[LINKFUNC(doSpallMomentum), _this] call CBA_fnc_execNextFrame;
|
||||
[QGVAR(spall_eh), [_this]] call CBA_fnc_serverEvent;
|
||||
if (isServer) then {
|
||||
[LINKFUNC(doSpallMomentum), _this] call CBA_fnc_execNextFrame;
|
||||
} else {
|
||||
[QGVAR(spall_eh), [_this]] call CBA_fnc_serverEvent;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user