Debug stuff

This commit is contained in:
esteldunedain 2016-02-27 09:14:07 -03:00
parent 849fa4f1ee
commit 834cbb4d24
2 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ if (isServer) then {
TRACE_1("serverSendsOrientations received:",_explosivesOrientations);
{
params ["_explosive","_direction","_pitch"];
TRACE_3("orientation set:",_explosive,_direction,_pitch);
[_explosive, _direction, _pitch] call FUNC(setPosition);
} forEach _explosivesOrientations;
deleteGroup GVAR(localGroup);

View File

@ -39,4 +39,5 @@ if (isServer) then {
params ["_explosive"];
(!isNull _explosive && {alive _explosive})
};
TRACE_1("setPosition",GVAR(explosivesOrientations));
};