mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Mixed up validity check...
This commit is contained in:
parent
a4129d22f9
commit
34baa5ae74
1 changed files with 1 additions and 1 deletions
|
@ -8283,7 +8283,7 @@ void A_JawzChase(mobj_t *actor)
|
|||
if (actor->extravalue1) // Disable looking by setting this
|
||||
return;
|
||||
|
||||
if (actor->target && !P_MobjWasRemoved(actor->target)) // No source!
|
||||
if (!actor->target || P_MobjWasRemoved(actor->target)) // No source!
|
||||
return;
|
||||
|
||||
player = K_FindJawzTarget(actor, actor->target->player);
|
||||
|
|
Loading…
Reference in a new issue