check targets[0] before sending it messages

This commit is contained in:
Bill Currie 2003-09-18 22:34:30 +00:00
parent 8935fc4c84
commit 508d7da410

View file

@ -529,13 +529,17 @@ the bot finds things it wants to kill/grab.
if (ent.items & IT_INVISIBILITY) //FIXME
p = 2;
else if (coop) {
if ([targets[0] classname] == "player")
if (![targets[0] ishuman])
return 0;
if (targets[0]) {
if ([targets[0] classname] == "player")
if (![targets[0] ishuman])
return 0;
}
p = 100;
} else if (teamplay && ent.team == bot.ent.team) {
if ([targets[0] classname] == "player")
return 0;
if (targets[0]) {
if ([targets[0] classname] == "player")
return 0;
}
p = 100;
} else
p = 30;