mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
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:
parent
66f15a968f
commit
61700f5b41
@ -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>*/
|
||||
|
@ -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];
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user