fix from @Ignatz-HeMan

"otherwise he checks the aimpos of the Vehicle and this is mostly not
visible for the zombie"
This commit is contained in:
vbawol 2017-06-24 10:40:41 -05:00
parent 66f15a968f
commit 61700f5b41
2 changed files with 4 additions and 4 deletions

View File

@ -669,7 +669,7 @@ class FSM
"" \n
"" \n
" {" \n
" _sight = [_zombie, ""VIEW""] checkVisibility [eyePos _zombie,aimPos _x];" \n
" _sight = [_zombie, ""VIEW""] checkVisibility [eyePos _zombie,aimPos (driver _x)];" \n
" if(alive _x)then{" \n
" if(_sight >= 0.62)then{" \n
" _thisPos = getPosATL _x;" \n
@ -876,4 +876,4 @@ class FSM
"end",
};
};
/*%FSM</COMPILE>*/
/*%FSM</COMPILE>*/

View File

@ -35,7 +35,7 @@ if (isNull objectParent _target) then {
_doAttack = true;
} else {
// send attack to other player
if (isplayer _target) then {
if (isPlayer _target) then {
[_unit,_target] remoteExec ["EPOCH_client_bitePlayer", _target];
};
};
@ -48,7 +48,7 @@ if (isNull objectParent _target) then {
_doAttack = true;
} else {
// send attack to other players
if (isplayer _x) then {
if (isPlayer _x) then {
[_unit,_x] remoteExec ["EPOCH_client_bitePlayer", _x];
};
};