Fix wrong pointer dereferecing in aiFindAttackers
This commit is contained in:
parent
0e447c55a8
commit
e978b2ad1b
|
@ -1464,7 +1464,7 @@ static int aiFindAttackers(Object* critter, Object** whoHitMePtr, Object** whoHi
|
|||
*whoHitFriendPtr = NULL;
|
||||
}
|
||||
|
||||
if (*whoHitByFriendPtr != NULL) {
|
||||
if (whoHitByFriendPtr != NULL) {
|
||||
*whoHitByFriendPtr = NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue